mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
fixed Visual Studio warning about use of potentially uninitialized variable (nw)
This commit is contained in:
parent
59ae533328
commit
d73d2b715f
@ -521,7 +521,7 @@ void decocass_state::draw_edge(bitmap_ind16 &bitmap, const rectangle &cliprect,
|
||||
|
||||
for (x=clip.min_x; x<=clip.max_x;x++)
|
||||
{
|
||||
int srccol;
|
||||
int srccol = 0;
|
||||
|
||||
// 2 bits control the x scroll mode, allowing it to wrap either half of the tilemap, or transition one way or the other between the two halves
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user