add stupid cast

also lay base for DSi savestates
This commit is contained in:
Arisotura
2022-01-06 22:29:45 +01:00
parent 43b551b042
commit 211a1ed5f2
6 changed files with 47 additions and 14 deletions

View File

@ -275,7 +275,7 @@ QString VerifySetup()
std::string GetSavestateName(int slot)
{
std::string ext = ".ml";
ext += ('0'+slot);
ext += (char)('0'+slot);
return GetAssetPath(false, Config::SavestatePath, ext);
}