pcsx2: fix a gcc warning

This commit is contained in:
Gregory Hainaut 2014-12-12 22:00:23 +01:00
parent 62bda675e0
commit 09ec6ebd8e

View File

@ -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)
{