Previous 199869 Revisions Next

r41753 Tuesday 17th November, 2015 at 17:11:36 UTC by Osso
video/cclimber.cpp: (toprollr) fixed MT05958 (nw)
Top Roller is the only machine in the driver which has a bigger spriteram (0xdf instead of 0x1f). This was overlooked when the Top Roller video functions where merged in cclimber.
[src/mame/video]cclimber.cpp

trunk/src/mame/video/cclimber.cpp
r250264r250265
582582
583583   /* draw the sprites -- note that it is important to draw them exactly in this
584584      order, to have the correct priorities. */
585   for (offs = 0x1c; offs >= 0; offs -= 4)
585   for (offs = m_spriteram.bytes() - 4; offs >= 0; offs -= 4)
586586   {
587587      int x = m_spriteram[offs + 3];
588588      int y = 240 - m_spriteram[offs + 2];


Previous 199869 Revisions Next


© 1997-2024 The MAME Team