mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
Fix signed-unsigned comparisons and mark warning as error (part 2).
This commit is contained in:
parent
771eff273b
commit
92e3eaf3ff
68 changed files with 194 additions and 202 deletions
|
@ -251,7 +251,7 @@ namespace rsx
|
|||
if (auto err = run_input_loop())
|
||||
return err;
|
||||
|
||||
if (return_code == entries.size() && !newpos_head)
|
||||
if (return_code + 0u == entries.size() && !newpos_head)
|
||||
return selection_code::new_save;
|
||||
if (return_code >= 0 && newpos_head)
|
||||
return return_code - 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue