summaryrefslogtreecommitdiff
path: root/Gameplay.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Gameplay.cpp')
-rw-r--r--Gameplay.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Gameplay.cpp b/Gameplay.cpp
index aceca8f..1613a86 100644
--- a/Gameplay.cpp
+++ b/Gameplay.cpp
@@ -60,7 +60,7 @@ void GameInit(void)
bool GamePause(void)
{
- if (PadButtonReleased(PAD_C) == true)
+ if (PadButtonReleased(PAD_C) != false)
{
uint8_t choice = gb.menu(PauseMenuOptions, 2);
@@ -82,7 +82,7 @@ void GameCalculations(void)
GamePlayers[i].Handler();
}
- if (PadAnyKeyPressed() == true)
+ if (PadAnyKeyPressed() != false)
{
SystemSetRandSeed();
}
@@ -106,7 +106,7 @@ void GameLoop(void)
{
while (1)
{
- if (GamePause() == true)
+ if (GamePause() != false)
{
return;
}