mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +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; //???
|
||||
|
||||
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user