mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
rsx: Fix uninitialized variable
This commit is contained in:
parent
db014d8a58
commit
47b196e9d0
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue