mirror of
https://github.com/holub/mame
synced 2025-04-28 19:14:55 +03:00
fix vstudio warning
This commit is contained in:
parent
9b659f5b58
commit
9b0b211a79
@ -175,7 +175,7 @@ void deco_ld_state::draw_sprites(bitmap_rgb32 &bitmap, const rectangle &cliprect
|
|||||||
|
|
||||||
for(i=0;i<0x20;i+=4)
|
for(i=0;i<0x20;i+=4)
|
||||||
{
|
{
|
||||||
if(!spriteram[i+0] & 1)
|
if(~spriteram[i+0] & 1)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
spr_offs = spriteram[i+1]|tile_bank;
|
spr_offs = spriteram[i+1]|tile_bank;
|
||||||
@ -190,7 +190,7 @@ void deco_ld_state::draw_sprites(bitmap_rgb32 &bitmap, const rectangle &cliprect
|
|||||||
|
|
||||||
for(i=0x3e0;i<0x400;i+=4)
|
for(i=0x3e0;i<0x400;i+=4)
|
||||||
{
|
{
|
||||||
if(!spriteram[i+0] & 1)
|
if(~spriteram[i+0] & 1)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
spr_offs = spriteram[i+1]|tile_bank;
|
spr_offs = spriteram[i+1]|tile_bank;
|
||||||
|
Loading…
Reference in New Issue
Block a user