mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
GCC 4.0.1 doesn't allow -1 for a UINT32 (nw)
This commit is contained in:
parent
92b5018936
commit
91d3679d13
@ -264,7 +264,7 @@ UINT32 casloopy_state::screen_update_casloopy(screen_device &screen, bitmap_ind1
|
|||||||
|
|
||||||
tile &= 0x7ff; //???
|
tile &= 0x7ff; //???
|
||||||
|
|
||||||
drawgfx_transpen(bitmap,cliprect,gfx,tile,7,0,0,x*8,y*8,-1);
|
drawgfx_transpen(bitmap,cliprect,gfx,tile,7,0,0,x*8,y*8,0xffffffff);
|
||||||
|
|
||||||
count+=2;
|
count+=2;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user