summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/taito_f2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/taito_f2.c')
-rw-r--r--src/mame/video/taito_f2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/taito_f2.c b/src/mame/video/taito_f2.c
index 16d6b39b944..d47dd71b244 100644
--- a/src/mame/video/taito_f2.c
+++ b/src/mame/video/taito_f2.c
@@ -1210,8 +1210,8 @@ VIDEO_UPDATE( taitof2_driftout )
UINT16 pen;
/* send palette, workaround for bug http://www.mametesters.org/view.php?id=3356 (just for this game)
- driftout writes twice per frame to the palette, this causes glitches on some setups due to
- VIDEO_UPDATE not being synced to renderer update when multithreading is on. */
+ driftout writes twice per frame to the palette, this causes glitches on some setups due to
+ VIDEO_UPDATE not being synced to renderer update when multithreading is on. */
for (pen=0;pen<4096;pen++)
palette_set_color_rgb(screen->machine, pen, pal5bit(paletteram_buffer[pen] >> 10), pal5bit(paletteram_buffer[pen] >> 5), pal5bit(paletteram_buffer[pen] >> 0));