CheatS: Support importing/parsing EPSXe cheat files

This commit is contained in:
Connor McLaughlin
2020-12-26 12:58:30 +10:00
parent cc9c3ea41f
commit 84181e2a1d
2 changed files with 103 additions and 2 deletions

View File

@ -123,6 +123,7 @@ public:
Autodetect,
PCSXR,
Libretro,
EPSXe,
Count
};
@ -161,6 +162,7 @@ public:
bool LoadFromString(const std::string& str, Format format);
bool LoadFromPCSXRString(const std::string& str);
bool LoadFromLibretroString(const std::string& str);
bool LoadFromEPSXeString(const std::string& str);
bool SaveToPCSXRFile(const char* filename);