mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-23 10:14:25 +00:00
pcsx2: fix a gcc warning
This commit is contained in:
parent
62bda675e0
commit
09ec6ebd8e
@ -279,7 +279,7 @@ void LoadBIOS()
|
||||
LoadExtraRom( L"erom", eeMem->EROM );
|
||||
|
||||
CurrentBiosInformation = NULL;
|
||||
for (int i = 0; i < sizeof(biosVersions)/sizeof(biosVersions[0]); i++)
|
||||
for (size_t i = 0; i < sizeof(biosVersions)/sizeof(biosVersions[0]); i++)
|
||||
{
|
||||
if (biosVersions[i].biosChecksum == BiosChecksum && biosVersions[i].biosVersion == BiosVersion)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user