summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2009-06-15 09:21:11 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2009-06-15 09:21:11 +0000
commit120c82b89f3370085ebb96e553c99d503d405b33 (patch)
tree40df387ddc3db675d28513d8819b2e9877437de5
parent20b6a07a1cbf3267fdffa63f45e36718bd963e29 (diff)
Fix for bug 3262
-rw-r--r--src/emu/video/tms9928a.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video/tms9928a.c b/src/emu/video/tms9928a.c
index ee292dbefc2..5e07c79532f 100644
--- a/src/emu/video/tms9928a.c
+++ b/src/emu/video/tms9928a.c
@@ -435,7 +435,7 @@ int TMS9928A_interrupt(running_machine *machine) {
/* when skipping frames, calculate sprite collision */
if (video_skip_this_frame() ) {
if (TMS_SPRITES_ENABLED) {
- draw_sprites (NULL, NULL, NULL);
+ draw_sprites (machine->primary_screen, NULL, NULL);
}
}