summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/inputdev.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2024-01-04 22:31:28 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2024-01-04 22:31:28 +0100
commit194e5cd77fbde97f623f8b665e2d17a92c2b8e2d (patch)
tree36d4fcdf3e413efd938a840432f503a02e05b3e8 /src/emu/inputdev.cpp
parent32047b59797a2e148e8551bd0b329c59807d43ae (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.cpp2
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;