summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/ldcore.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/emu/machine/ldcore.c
parent6d7ed9b5739db3476f5c5d6d21ab26a16b8d99db (diff)
Cleanups and version bump.mame0127u5
Diffstat (limited to 'src/emu/machine/ldcore.c')
-rw-r--r--src/emu/machine/ldcore.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/machine/ldcore.c b/src/emu/machine/ldcore.c
index 401d9763362..c112813968a 100644
--- a/src/emu/machine/ldcore.c
+++ b/src/emu/machine/ldcore.c
@@ -151,7 +151,7 @@ static const ldplayer_interface *player_interfaces[] =
&simutrek_interface,
&ldv1000_interface,
// &ldp1450_interface,
-// &vp932_interface,
+// &vp932_interface,
&vp931_interface
};
@@ -894,7 +894,7 @@ static void read_track_data(laserdisc_state *ld)
UINT32 vbiframe;
UINT32 readhunk;
INT32 chdtrack;
-
+
frame = &ldcore->frame[ldcore->videoindex];
/* special cases for playing forward */
@@ -903,7 +903,7 @@ static void read_track_data(laserdisc_state *ld)
/* if the previous field had a frame number, force the new field to pair with the previous one */
if ((ldcore->metadata[fieldnum ^ 1].line1718 & VBI_MASK_CAV_PICTURE) == VBI_CODE_CAV_PICTURE)
frame->numfields = 1;
-
+
/* if the twice-previous field was a frame number, and we've moved one since then, consider this one done */
else if (frame->numfields >= 2 && (ldcore->metadata[fieldnum].line1718 & VBI_MASK_CAV_PICTURE) == VBI_CODE_CAV_PICTURE)
{
@@ -912,7 +912,7 @@ static void read_track_data(laserdisc_state *ld)
frame->numfields = 0;
}
}
-
+
/* all other cases */
else
{