mirror of
https://github.com/holub/mame
synced 2025-05-24 14:56:21 +03:00
pgm: fixed uninitialized variable that could lead to odd sprites (nw)
This commit is contained in:
parent
61c0cd9ef1
commit
5993a5344f
@ -173,7 +173,7 @@ static void draw_sprite_new_zoomed( pgm_state *state, running_machine &machine,
|
||||
int ycntdraw;
|
||||
int yzoombit;
|
||||
int xzoombit;
|
||||
int xcnt;
|
||||
int xcnt = 0;
|
||||
|
||||
|
||||
state->m_aoffset = (state->m_bdata[(state->m_boffset + 3) & state->m_bdatasize] << 24) | (state->m_bdata[(state->m_boffset + 2) & state->m_bdatasize] << 16) |
|
||||
|
Loading…
Reference in New Issue
Block a user