diff options
author | 2024-01-04 22:31:28 +0100 | |
---|---|---|
committer | 2024-01-04 22:31:28 +0100 | |
commit | 194e5cd77fbde97f623f8b665e2d17a92c2b8e2d (patch) | |
tree | 36d4fcdf3e413efd938a840432f503a02e05b3e8 /src/emu/inputdev.cpp | |
parent | 32047b59797a2e148e8551bd0b329c59807d43ae (diff) |
New systems marked not working
------------------------------
Cuty Line Limited (ver.1.30) [freaktech]
- igs/goldstar.cpp: enabled girls display for cmast91 and other games on same hw, removed 2nd ppi as PCB pics and readme only show one
- various files: removed superfluous semicolons
Diffstat (limited to 'src/emu/inputdev.cpp')
-rw-r--r-- | src/emu/inputdev.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/inputdev.cpp b/src/emu/inputdev.cpp index 321d04e77df..a9caaf7788d 100644 --- a/src/emu/inputdev.cpp +++ b/src/emu/inputdev.cpp @@ -476,7 +476,7 @@ input_device_joystick::input_device_joystick(input_manager &manager, std::string s32 input_device_joystick::adjust_absolute_value(s32 result) const { // properties are symmetric - bool const negative = result < 0;; + bool const negative = result < 0; if (negative) result = -result; |