summaryrefslogtreecommitdiff
path: root/Pad.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Pad.cpp')
-rw-r--r--Pad.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Pad.cpp b/Pad.cpp
index 6c3685d..fc5fa60 100644
--- a/Pad.cpp
+++ b/Pad.cpp
@@ -40,9 +40,9 @@ bool PadDirectionKeyPressed(void)
bool PadAnyKeyPressed(void)
{
- return ( (PadDirectionKeyPressed() == true)
+ return ( (PadDirectionKeyPressed() != false)
||
- (PadButtonPressed(PAD_A) == true)
+ (PadButtonPressed(PAD_A) != false)
||
- (PadButtonPressed(PAD_B) == true) );
+ (PadButtonPressed(PAD_B) != false) );
}