summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2011-08-07 16:12:36 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2011-08-07 16:12:36 +0000
commit19a90cdcc7f5233155fd53bdbc3f6bdefb675cc4 (patch)
tree151bce206c8a48ee43d5704d330ccd3514be6490 /src/mame/video
parent5aa5a1d553a8f189d6015ddf0d558b1fc890b10c (diff)
Port from MESS, nw
Diffstat (limited to 'src/mame/video')
-rw-r--r--src/mame/video/stvvdp2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/stvvdp2.c b/src/mame/video/stvvdp2.c
index c2ad67480fe..b213602cbaf 100644
--- a/src/mame/video/stvvdp2.c
+++ b/src/mame/video/stvvdp2.c
@@ -3082,7 +3082,7 @@ static void stv_vdp2_draw_basic_bitmap(running_machine &machine, bitmap_t *bitma
gfxdatalow = gfxdata + stv2_current_tilemap.bitmap_map * 0x20000;
gfxdata+=(
(stv2_current_tilemap.scrollx & (xlinesize-1)) +
- ((stv2_current_tilemap.scrolly & (ysize-1)) * (xlinesize)) + /* TODO: mask ysize, check me! */
+ ((stv2_current_tilemap.scrolly) * (xlinesize)) + /* TODO: mask ysize, check me! */
(stv2_current_tilemap.bitmap_map * 0x20000)
);
gfxdatahigh = gfxdatalow + xlinesize*ysize;