diff options
| author | 2016-10-21 11:54:18 +0200 | |
|---|---|---|
| committer | 2016-10-21 11:54:18 +0200 | |
| commit | a291e77b2cfc4ce1b780db0d8fa664fb8094d365 (patch) | |
| tree | 88f0085d143b3e93862482de364559aa9946b1e6 /src/emu/uiinput.cpp | |
| parent | 5bdb4f7a8974c550608c83b8872e89259211496e (diff) | |
some bool <-> int not needed conversions, also cleaned drivenum.* was using memset for clearing vector (nw)
Diffstat (limited to 'src/emu/uiinput.cpp')
| -rw-r--r-- | src/emu/uiinput.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/uiinput.cpp b/src/emu/uiinput.cpp index 9707793b2a3..0523decc27d 100644 --- a/src/emu/uiinput.cpp +++ b/src/emu/uiinput.cpp @@ -244,7 +244,7 @@ bool ui_input_manager::pressed(int code) bool ui_input_manager::pressed_repeat(int code, int speed) { - int pressed; + bool pressed; g_profiler.start(PROFILER_INPUT); |
