summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/galpanic.c
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2012-01-25 16:08:33 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2012-01-25 16:08:33 +0000
commitc51800d329bde81c28f11cd4a0bce0052f306ec0 (patch)
tree79eaa7c5bad32d5bb98bb6c19d515518fcf0a07b /src/mame/drivers/galpanic.c
parentfa10190461efc165e2a55c74fdd8513a2b8056e0 (diff)
most screen eof regression fixes could be reverted after core fix
Diffstat (limited to 'src/mame/drivers/galpanic.c')
-rw-r--r--src/mame/drivers/galpanic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/galpanic.c b/src/mame/drivers/galpanic.c
index a939c4f5062..bf59d10f1c3 100644
--- a/src/mame/drivers/galpanic.c
+++ b/src/mame/drivers/galpanic.c
@@ -127,8 +127,8 @@ The current set of Super Model is an example of type C
static SCREEN_VBLANK( galpanic )
{
- // falling edge
- if (!vblank_on)
+ // rising edge
+ if (vblank_on)
{
device_t *pandora = screen.machine().device("pandora");
pandora_eof(pandora);