mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
fix uninitialised variable error (nw)
This commit is contained in:
parent
afee3ba75f
commit
76ab7e62de
1 changed files with 2 additions and 2 deletions
|
@ -78,8 +78,8 @@ void cedar_magnet_sprite_device::do_blit()
|
|||
// printf("~~~~~~~~~~~~~~~~~ drawing sprite with x:%02x y:%02x code:%04x size:%02x unk:%02x\n", m_loweraddr, m_upperaddr, (m_spritecodehigh << 8) | m_spritecodelow, m_spritesize, pio0_pb_data);
|
||||
// printf("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n");
|
||||
|
||||
int ysize;
|
||||
int xsize;
|
||||
int ysize = 0;
|
||||
int xsize = 0;
|
||||
int erase = 0;
|
||||
|
||||
// bit 0x80 is always set
|
||||
|
|
Loading…
Reference in a new issue