From 47b196e9d00e696b2b43280c17b0bacf218c36b6 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Thu, 16 Jan 2020 15:09:26 +0300 Subject: [PATCH] rsx: Fix uninitialized variable --- rpcs3/Emu/RSX/rsx_cache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/rsx_cache.h b/rpcs3/Emu/RSX/rsx_cache.h index 7355655b10..db9e1f1f84 100644 --- a/rpcs3/Emu/RSX/rsx_cache.h +++ b/rpcs3/Emu/RSX/rsx_cache.h @@ -492,7 +492,7 @@ namespace rsx // Call the worker function directly, stoping it prematurely to be able update the screen u8 inc = 10; - u32 stop_at; + u32 stop_at = 0; do { stop_at = std::min(stop_at + inc, entry_count);