CommonHostInterface: Fix incorrect version error string in save state selector

This commit is contained in:
Connor McLaughlin 2020-09-06 17:48:58 +10:00
parent 4f8fd049d0
commit 75ad685ae8
1 changed files with 1 additions and 2 deletions

View File

@ -1807,8 +1807,7 @@ CommonHostInterface::GetExtendedSaveStateInfo(const char* game_code, s32 slot)
if (header.version != SAVE_STATE_VERSION)
{
ssi.title = StringUtil::StdStringFromFormat("Invalid version %u (expected %u)", header.version, header.magic,
SAVE_STATE_VERSION);
ssi.title = StringUtil::StdStringFromFormat("Invalid version %u (expected %u)", header.version, SAVE_STATE_VERSION);
return ssi;
}