diff options
author | 2016-10-22 16:37:12 +0200 | |
---|---|---|
committer | 2016-10-22 16:37:12 +0200 | |
commit | a6bdefec8c76e9878b634119c56438a7673b0385 (patch) | |
tree | 9b435836a12773fe5b84cf1fd04866ecd9ecc2da /src/emu/uiinput.cpp | |
parent | 5f3d4fb33da4304e417a0e142e82e3d292646465 (diff) |
more TRUE/FALSE cleanup (nw)
Diffstat (limited to 'src/emu/uiinput.cpp')
-rw-r--r-- | src/emu/uiinput.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/uiinput.cpp b/src/emu/uiinput.cpp index a52df97679d..3094df31ce8 100644 --- a/src/emu/uiinput.cpp +++ b/src/emu/uiinput.cpp @@ -20,7 +20,7 @@ enum { SEQ_PRESSED_FALSE = 0, /* not pressed */ SEQ_PRESSED_TRUE, /* pressed */ - SEQ_PRESSED_RESET /* reset -- converted to FALSE once detected as not pressed */ + SEQ_PRESSED_RESET /* reset -- converted to false once detected as not pressed */ }; @@ -224,7 +224,7 @@ ioport_field *ui_input_manager::find_mouse_field() const ***************************************************************************/ /*------------------------------------------------- - pressed - return TRUE if a key down + pressed - return true if a key down for the given user interface sequence is detected -------------------------------------------------*/ @@ -236,7 +236,7 @@ bool ui_input_manager::pressed(int code) /*------------------------------------------------- - pressed_repeat - return TRUE if a key + pressed_repeat - return true if a key down for the given user interface sequence is detected, or if autorepeat at the given speed is triggered |