mirror of
https://github.com/holub/mame
synced 2025-07-04 01:18:59 +03:00
(MESS) fixed potentially uninitialized variable when building with MSVC (nw)
This commit is contained in:
parent
ae9d5d3bef
commit
5bebbc7c53
@ -3118,7 +3118,7 @@ READ16_HANDLER(s3_pixel_xfer_r)
|
||||
|
||||
WRITE16_HANDLER(s3_pixel_xfer_w)
|
||||
{
|
||||
int x,data_size;
|
||||
int x,data_size = 0;
|
||||
UINT32 off,xfer = 0;
|
||||
|
||||
if(offset == 1)
|
||||
|
Loading…
Reference in New Issue
Block a user