Skip to content

Commit

Permalink
fix compile on macOS/linux
Browse files Browse the repository at this point in the history
  • Loading branch information
SheridanR committed Dec 13, 2024
1 parent ce0579f commit b8ca783
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/interface/interface.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -715,16 +715,16 @@ class GenericGUIMenu
#endif
}

static const int ASSIST_SLOT_CLOAK = -1;
static const int ASSIST_SLOT_MASK = -2;
static const int ASSIST_SLOT_AMULET = -3;
static const int ASSIST_SLOT_RING = -4;
static const int ASSIST_RACE_COLUMN = 10;
static const int ASSIST_CHAR_NAME = -10;
static const int ASSIST_CHAR_RACE = -11;
static const int ASSIST_CHAR_CLASS = -12;

static const int achievementDisabledLimit = 10;
static constexpr int ASSIST_SLOT_CLOAK = -1;
static constexpr int ASSIST_SLOT_MASK = -2;
static constexpr int ASSIST_SLOT_AMULET = -3;
static constexpr int ASSIST_SLOT_RING = -4;
static constexpr int ASSIST_RACE_COLUMN = 10;
static constexpr int ASSIST_CHAR_NAME = -10;
static constexpr int ASSIST_CHAR_RACE = -11;
static constexpr int ASSIST_CHAR_CLASS = -12;

static constexpr int achievementDisabledLimit = 10;

Item itemCloak;
Item itemMask;
Expand Down

0 comments on commit b8ca783

Please sign in to comment.