summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/firefox.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-09-26 13:42:51 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-09-26 13:42:51 +0000
commit229d5989898bc1abae0b5beee4825d1a1c673be0 (patch)
tree447a6b28d527a46eb0a1ec2cacc8f4641aded023 /src/mame/drivers/firefox.c
parent6d7ed9b5739db3476f5c5d6d21ab26a16b8d99db (diff)
Cleanups and version bump.mame0127u5
Diffstat (limited to 'src/mame/drivers/firefox.c')
-rw-r--r--src/mame/drivers/firefox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/firefox.c b/src/mame/drivers/firefox.c
index ee9f56f0070..d1e3090feca 100644
--- a/src/mame/drivers/firefox.c
+++ b/src/mame/drivers/firefox.c
@@ -73,13 +73,13 @@ static int m_n_disc_read_data;
static READ8_HANDLER( firefox_disc_status_r )
{
UINT8 result = 0xff;
-
+
result ^= 0x20;
if (!laserdisc_line_r(laserdisc, LASERDISC_LINE_READY))
result ^= 0x40;
if (laserdisc_line_r(laserdisc, LASERDISC_LINE_DATA_AVAIL))
result ^= 0x80;
-
+
return result;
}