summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/pc_vga_matrox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/pc_vga_matrox.cpp')
-rw-r--r--src/devices/video/pc_vga_matrox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/pc_vga_matrox.cpp b/src/devices/video/pc_vga_matrox.cpp
index d9643d666ff..b795ec17877 100644
--- a/src/devices/video/pc_vga_matrox.cpp
+++ b/src/devices/video/pc_vga_matrox.cpp
@@ -656,10 +656,10 @@ uint32_t matrox_vga_device::screen_update(screen_device &screen, bitmap_rgb32 &b
const int m_test_y = cliprect.max_y;
if(machine().input().code_pressed(JOYCODE_X_RIGHT_SWITCH))
- m_test_x += 1 << (machine().input().code_pressed(JOYCODE_BUTTON2) ? 4 : 0);;
+ m_test_x += 1 << (machine().input().code_pressed(JOYCODE_BUTTON2) ? 4 : 0);
if(machine().input().code_pressed(JOYCODE_X_LEFT_SWITCH))
- m_test_x -= 1 << (machine().input().code_pressed(JOYCODE_BUTTON2) ? 4 : 0);;
+ m_test_x -= 1 << (machine().input().code_pressed(JOYCODE_BUTTON2) ? 4 : 0);
//if(machine().input().code_pressed(JOYCODE_Y_DOWN_SWITCH))
// m_test_y++;