From c891603d86f08eecc7e7d9620fd4211173461aec Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Sat, 6 Jun 2020 20:37:20 +0200 Subject: [PATCH] devices/video/psx.cpp: initialized a couple of variables that were causing problems in devnoclear debug builds (nw) --- src/devices/video/psx.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/devices/video/psx.cpp b/src/devices/video/psx.cpp index be2ac5a722e..83cd0e5c02d 100644 --- a/src/devices/video/psx.cpp +++ b/src/devices/video/psx.cpp @@ -3516,6 +3516,8 @@ void psxgpu_device::gpu_reset() n_twy = 0; n_twh = 255; n_tww = 255; + m_draw_stp = false; + m_check_stp = false; updatevisiblearea(); }