mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-26 07:39:56 -06:00
add some missing shit to savestates
This commit is contained in:
@ -48,6 +48,13 @@ public:
|
||||
|
||||
void VarArray(void* data, u32 len);
|
||||
|
||||
bool IsAtleastVersion(u32 major, u32 minor)
|
||||
{
|
||||
if (VersionMajor > major) return true;
|
||||
if (VersionMajor == major && VersionMinor >= minor) return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
private:
|
||||
FILE* file;
|
||||
};
|
||||
|
Reference in New Issue
Block a user