CommonHostInterface: Fix incorrect version error string in save state selector
This commit is contained in:
parent
4f8fd049d0
commit
75ad685ae8
|
@ -1807,8 +1807,7 @@ CommonHostInterface::GetExtendedSaveStateInfo(const char* game_code, s32 slot)
|
||||||
|
|
||||||
if (header.version != SAVE_STATE_VERSION)
|
if (header.version != SAVE_STATE_VERSION)
|
||||||
{
|
{
|
||||||
ssi.title = StringUtil::StdStringFromFormat("Invalid version %u (expected %u)", header.version, header.magic,
|
ssi.title = StringUtil::StdStringFromFormat("Invalid version %u (expected %u)", header.version, SAVE_STATE_VERSION);
|
||||||
SAVE_STATE_VERSION);
|
|
||||||
return ssi;
|
return ssi;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue