Android: Don't show OSD messages when opening savestate menu

This commit is contained in:
JosJuice 2021-01-18 14:28:43 +01:00
parent e62fa1ea9f
commit 4597d53307

View file

@ -456,10 +456,7 @@ bool ReadHeader(const std::string& filename, StateHeader& header)
Flush();
File::IOFile f(filename, "rb");
if (!f)
{
Core::DisplayMessage("State not found", 2000);
return false;
}
f.ReadArray(&header, 1);
return true;