This commit is contained in:
RocketRobz 2021-06-17 13:41:35 -06:00
parent 019501de8d
commit e439f1a9f6

View File

@ -172,6 +172,9 @@ void PhotoStudio::getMaxChars() {
case 9: case 9:
import_totalCharacters = 4; import_totalCharacters = 4;
break; break;
case 0xFF:
import_totalCharacters = numberOfExportedCharacters-1;
break;
} }
} }
} }
@ -596,6 +599,8 @@ const char* PhotoStudio::charGameTitle(void) const {
return nesTitle(); return nesTitle();
case 17: case 17:
return "NiGHTS series"; return "NiGHTS series";
case 0xFF:
return "Custom";
} }
return "???"; return "???";
} }