mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 13:01:27 +12:00
patch manager: Skip lower patch_versions
This commit is contained in:
parent
bf978ac8ca
commit
fd2cd84555
3 changed files with 27 additions and 4 deletions
|
@ -67,7 +67,7 @@ namespace utils
|
|||
int vnum2 = 0;
|
||||
|
||||
// Loop until both strings are processed
|
||||
for (int i = 0, j = 0; (i < v1.length() || j < v2.length());)
|
||||
for (size_t i = 0, j = 0; (i < v1.length() || j < v2.length());)
|
||||
{
|
||||
// Storing numeric part of version 1 in vnum1
|
||||
while (i < v1.length() && v1[i] != '.')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue