diff options
author | David Viens <plgDavid@users.noreply.github.com> | 2014-10-20 14:40:45 -0400 |
---|---|---|
committer | David Viens <plgDavid@users.noreply.github.com> | 2014-10-20 14:40:45 -0400 |
commit | 168ca86a3d200a9893726a8bd5aa01e20f638192 (patch) | |
tree | 449af344b7ed9b50a1c03ae8cba9edc5fb26bb3c | |
parent | b5ff93f158ee14f133600e8d3f602b019277e2f6 (diff) |
Update x68k.c
MSCV2010 warning treated as error complains about this bool being potentially uninitialized.
-rw-r--r-- | src/mess/video/x68k.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/video/x68k.c b/src/mess/video/x68k.c index da5ea70c6fb..b9f03430e1b 100644 --- a/src/mess/video/x68k.c +++ b/src/mess/video/x68k.c @@ -890,7 +890,7 @@ bool x68k_state::x68k_draw_gfx_scanline( bitmap_ind16 &bitmap, rectangle cliprec void x68k_state::x68k_draw_gfx(bitmap_rgb32 &bitmap,rectangle cliprect) { int priority, scanline, pixel; - bool gfxblend; + bool gfxblend=false; //rectangle rect; //int xscr,yscr; //int gpage; |