diff options
author | 2016-01-30 21:01:38 +0100 | |
---|---|---|
committer | 2016-01-30 21:01:38 +0100 | |
commit | dc7cc9a7ebda0554ac7363b3fd46ee57b078db1e (patch) | |
tree | 6852e545b7d7e9d418ed7adbdcb0025f25b6241d | |
parent | 5f3e6c8bdc4784d55615b9340e5e09a2214d2ae2 (diff) | |
parent | da560be4cec5c452eb4da6f2f36fae08418ab166 (diff) |
Merge pull request #595 from dankan1890/master
This fix VS2015 warning (and building) about uninitialized variable.
-rw-r--r-- | src/devices/video/ef9365.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/ef9365.cpp b/src/devices/video/ef9365.cpp index f923cfd0813..5f81d7f45b5 100644 --- a/src/devices/video/ef9365.cpp +++ b/src/devices/video/ef9365.cpp @@ -938,7 +938,7 @@ void ef9365_device::screen_scanning( int force_clear ) void ef9365_device::ef9365_exec(UINT8 cmd) { int tmp_delta_x,tmp_delta_y; - int busy_cycles; + int busy_cycles = 0; m_state = 0; if( ( cmd>>4 ) == 0 ) |