diff --git a/src/ArmsItem.cpp b/src/ArmsItem.cpp index d16989e6..78fc7f2a 100644 --- a/src/ArmsItem.cpp +++ b/src/ArmsItem.cpp @@ -461,7 +461,7 @@ int CampLoop() } } - if (g_GameFlags & GAME_FLAG_IS_CONTROL_ENABLED) + if (g_GameFlags & GAME_FLAG_IS_CONTROL_DISABLED) MoveCampCursor(); switch (TextScriptProc()) @@ -479,7 +479,7 @@ int CampLoop() if (gCampActive) { - if (g_GameFlags & GAME_FLAG_IS_CONTROL_ENABLED && gKeyTrg & (gKeyCancel | gKeyItem)) + if (g_GameFlags & GAME_FLAG_IS_CONTROL_DISABLED && gKeyTrg & (gKeyCancel | gKeyItem)) { StopTextScript(); break; diff --git a/src/Game.h b/src/Game.h index 9623063f..9b4d32ff 100644 --- a/src/Game.h +++ b/src/Game.h @@ -21,7 +21,7 @@ enum GameFlagsValues * - Create a bullet if some other conditions are fullfilled while iterating over the stars in ActStar (If you have any idea of how that actually works, you may * want to replace this line with a better explanation) */ - GAME_FLAG_IS_CONTROL_ENABLED = 2, + GAME_FLAG_IS_CONTROL_DISABLED = 2, // To be continued };