Skip to content

Commit

Permalink
alola is back on
Browse files Browse the repository at this point in the history
  • Loading branch information
Pinsplash committed Oct 13, 2024
1 parent 880589d commit 69a48db
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src_imgui/examples/example_win32_directx9/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,21 @@ using namespace std;

enum MethodFilterFlags
{
MethodFilterFlags_None = 0,
MethodFilterFlags_Walk = 1 << 0,
MethodFilterFlags_Surf = 1 << 1,
MethodFilterFlags_RodOld = 1 << 2,
MethodFilterFlags_RodGood = 1 << 3,
MethodFilterFlags_RodSuper = 1 << 4,
MethodFilterFlags_RockSmash = 1 << 5,
MethodFilterFlags_Headbutt = 1 << 6,
MethodFilterFlags_Seaweed = 1 << 7,
MethodFilterFlags_DarkGrass = 1 << 8,
MethodFilterFlags_Phenomena = 1 << 9,
MethodFilterFlags_RoughTerrain = 1 << 10,
MethodFilterFlags_None = 0,
MethodFilterFlags_Walk = 1 << 0,
MethodFilterFlags_Surf = 1 << 1,
MethodFilterFlags_RodOld = 1 << 2,
MethodFilterFlags_RodGood = 1 << 3,
MethodFilterFlags_RodSuper = 1 << 4,
MethodFilterFlags_RockSmash = 1 << 5,
MethodFilterFlags_Headbutt = 1 << 6,
MethodFilterFlags_Seaweed = 1 << 7,
MethodFilterFlags_DarkGrass = 1 << 8,
MethodFilterFlags_Phenomena = 1 << 9,
MethodFilterFlags_RoughTerrain = 1 << 10,
MethodFilterFlags_BubblingSpots = 1 << 11,
MethodFilterFlags_Ambush = 1 << 12,
MethodFilterFlags_Last = 1 << 13,
MethodFilterFlags_Ambush = 1 << 12,
MethodFilterFlags_Last = 1 << 13,
};

struct Settings
Expand Down Expand Up @@ -926,8 +926,8 @@ static void dosettingswindow(Settings* settings, SettingsWindowData* settingswin
"Diamond", "Pearl", "Platinum", "HeartGold", "SoulSilver",
"Black", "White", "Black 2", "White 2",
"X", "Y",
#ifdef _DEBUG
"Sun", "Moon", "Ultra Sun", "Ultra Moon"
#ifdef _DEBUG
, "All"//quick and dirty debug option only, not perfectly functional
#endif //_DEBUG
};
Expand All @@ -937,8 +937,8 @@ static void dosettingswindow(Settings* settings, SettingsWindowData* settingswin
"diamond", "pearl", "platinum", "heartgold", "soulsilver",
"black", "white", "black-2", "white-2",
"x", "y",
#ifdef _DEBUG
"sun", "moon", "ultra-sun", "ultra-moon"
#ifdef _DEBUG
, "all"//quick and dirty debug option only, not perfectly functional
#endif //_DEBUG
};
Expand Down

0 comments on commit 69a48db

Please sign in to comment.