summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/toratora.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/toratora.c')
-rw-r--r--src/mame/drivers/toratora.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/toratora.c b/src/mame/drivers/toratora.c
index c6169866aa2..e46930fdd40 100644
--- a/src/mame/drivers/toratora.c
+++ b/src/mame/drivers/toratora.c
@@ -139,7 +139,7 @@ static INTERRUPT_GEN( toratora_timer )
state->timer++; /* timer counting at 16 Hz */
/* also, when the timer overflows (16 seconds) watchdog would kick in */
- if (state->timer & 0x100)
+ if (state->timer & 0x100)
popmessage("watchdog!");
if (state->last != (input_port_read(device->machine, "INPUT") & 0x0f))