rsx: Fix uninitialized variable

This commit is contained in:
kd-11 2020-01-16 15:09:26 +03:00 committed by kd-11
parent db014d8a58
commit 47b196e9d0
1 changed files with 1 additions and 1 deletions

View File

@ -492,7 +492,7 @@ namespace rsx
// Call the worker function directly, stoping it prematurely to be able update the screen // Call the worker function directly, stoping it prematurely to be able update the screen
u8 inc = 10; u8 inc = 10;
u32 stop_at; u32 stop_at = 0;
do do
{ {
stop_at = std::min(stop_at + inc, entry_count); stop_at = std::min(stop_at + inc, entry_count);