mGUI: Blacklist .cheats extension for ROMs

This commit is contained in:
Vicki Pfau 2021-09-14 11:48:58 -07:00
parent 2ac6920238
commit 1aa5f1b9ff
1 changed files with 3 additions and 0 deletions

View File

@ -95,6 +95,9 @@ static bool _testExtensions(const char* name) {
if (!strncmp(ext, "ini", PATH_MAX)) {
return false;
}
if (!strncmp(ext, "cheats", PATH_MAX)) {
return false;
}
if (!strncmp(ext, "ss", 2)) {
return false;
}