summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/ldvp931.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-07-13 18:56:09 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-07-13 18:56:09 +0000
commit9db0a2d28188b87dc95b2ac0cabbe18724a74a4a (patch)
treec5fbec640cce9ec54aaa97bfda7b76ecffeed08e /src/emu/machine/ldvp931.c
parentd1ae6b893d4544ad7b9fec5f1bad5c6ea0d25726 (diff)
Added mechanism for the laserdisc core to return 0 for the
philips codes if video is squelched. Updated the Gottlieb and Cliff Hanger drivers to request it this way, since they decode externally. Made a couple of minor tweaks to the Cliff Hanger driver. Fixed interrupt timing (was not taking into account interlacing) to fix up glitches in playback and ensure the disk test passes. Added SHA1 and marked the game as working. New games marked working: Cliff Hanger [Aaron Giles, Warren Ondras, Ernesto Corvi]
Diffstat (limited to 'src/emu/machine/ldvp931.c')
-rw-r--r--src/emu/machine/ldvp931.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/ldvp931.c b/src/emu/machine/ldvp931.c
index b63d127174f..a1a076744fa 100644
--- a/src/emu/machine/ldvp931.c
+++ b/src/emu/machine/ldvp931.c
@@ -329,7 +329,7 @@ static TIMER_CALLBACK( vbi_data_fetch )
/* fetch the code and compute the DATIC latched value */
if (line >= LASERDISC_CODE_LINE16 && line <= LASERDISC_CODE_LINE18)
- code = laserdisc_get_field_code(ld->device, line);
+ code = laserdisc_get_field_code(ld->device, line, FALSE);
/* at the start of each line, signal an interrupt and use a timer to turn it off */
if (which == 0)