From c8bef31f09e65c6a9968d0eec65e7e87ab3dd2ac Mon Sep 17 00:00:00 2001 From: dankan1890 Date: Sat, 30 Jan 2016 20:59:42 +0100 Subject: 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.) --- src/devices/video/ef9365.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 ) -- cgit v1.2.3