summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-03-22 10:11:08 +0100
committer hap <happppp@users.noreply.github.com>2020-03-22 10:11:08 +0100
commitf7085b824dd4d31115cc005853a3b5ef49908784 (patch)
tree1401970b702a5b04aad2eb849642c662752f6c00 /src/mame/drivers
parent92d6e163a8e417c3ec527a70d3858b182e2e6d13 (diff)
xavix2: osso's compile fix (nw)
Diffstat (limited to 'src/mame/drivers')
-rw-r--r--src/mame/drivers/xavix2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/xavix2.cpp b/src/mame/drivers/xavix2.cpp
index 5c1411b68e5..7d17e36658f 100644
--- a/src/mame/drivers/xavix2.cpp
+++ b/src/mame/drivers/xavix2.cpp
@@ -594,10 +594,10 @@ void xavix2_state::mem(address_map &map)
uint32_t xavix2_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
- if(machine().input().code_pressed_once(KEYCODE_8))
- irq_raise(8);
- if(machine().input().code_pressed_once(KEYCODE_0))
- irq_raise(10);
+ if(machine().input().code_pressed_once(KEYCODE_8))
+ irq_raise(8);
+ if(machine().input().code_pressed_once(KEYCODE_0))
+ irq_raise(10);
constexpr int dx = 0x400 - 320;
constexpr int dy = 0x200 - 200;