summaryrefslogtreecommitdiff
path: root/src/gui/models/typelistmodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/models/typelistmodel.h')
-rw-r--r--src/gui/models/typelistmodel.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/models/typelistmodel.h b/src/gui/models/typelistmodel.h
index 7a50c6905..2836dbbf2 100644
--- a/src/gui/models/typelistmodel.h
+++ b/src/gui/models/typelistmodel.h
@@ -38,9 +38,9 @@ class TypeListModel final : public ListModel
*/
int getNumberOfElements() override final A_WARN_UNUSED
#if defined(EATHENA_SUPPORT) && defined(TMWA_SUPPORT)
- { return 3; }
+ { return 4; }
#elif defined(EATHENA_SUPPORT)
- { return 1; }
+ { return 2; }
#else
{ return 2; }
#endif
@@ -59,12 +59,16 @@ class TypeListModel final : public ListModel
#ifdef EATHENA_SUPPORT
else if (elementIndex == 2)
return "eAthena";
+ else if (elementIndex == 3)
+ return "Evol2";
#endif // EATHENA_SUPPORT
else
#else // TMWA_SUPPORT
#ifdef EATHENA_SUPPORT
if (elementIndex == 0)
return "eAthena";
+ else if (elementIndex == 1)
+ return "Evol2";
else
#endif // EATHENA_SUPPORT
#endif // TMWA_SUPPORT