diff options
author | 2016-01-30 20:59:42 +0100 | |
---|---|---|
committer | 2016-01-30 20:59:42 +0100 | |
commit | c8bef31f09e65c6a9968d0eec65e7e87ab3dd2ac (patch) | |
tree | c3e17580abee8c0b4e552da9145aa3ac5df07b19 /src | |
parent | 42622cfe8effd40c0bf63030738e43feaa6999d6 (diff) |
This fix VS2015 warning (and building) about uninitialized variable.
(note: I don't think is right initialized to 0, but I don't have the skills necessary to determine the proper value.)
Diffstat (limited to 'src')
-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 ) |