summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2010-04-07 19:56:21 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2010-04-07 19:56:21 +0000
commite0d0393cee8e7614d3c34254415c9d1406f64ac2 (patch)
tree2d6dcb4f1cf8b6c151c616340562c0611b76e19c
parent4f03a6507707bef1371a7654267c40c83998aecb (diff)
snes.c: Fixed small problem with vflipped large tiles. No whatsnew.
-rw-r--r--src/mame/video/snes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/snes.c b/src/mame/video/snes.c
index 416541b988f..26592702b4c 100644
--- a/src/mame/video/snes.c
+++ b/src/mame/video/snes.c
@@ -542,7 +542,7 @@ INLINE void snes_update_line( UINT16 curline, UINT8 layer, UINT8 priority_b, UIN
yscroll = ypos & ((8 << tile_size) - 1);
if (tile_size)
- if ((yscroll & 8) != vflip)
+ if (BIT(yscroll, 3) != vflip)
tile += 16;
if (yscroll > 7)