Fix off by 1 in PSX RetroAchievements disc hashing
This commit is contained in:
parent
0105caee6e
commit
ce3af37b24
|
@ -114,7 +114,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
return sector;
|
||||
}
|
||||
|
||||
filename = filename.Remove(0, slashIndex);
|
||||
filename = filename.Remove(0, slashIndex + 1);
|
||||
numSectors = (filesize + 2047) / 2048;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue