fix: bool defintion causing fast file select crash (#2142)

Co-authored-by: briaguya <briaguya@alice>
This commit is contained in:
briaguya 2022-12-11 17:12:02 -05:00 committed by GitHub
parent 15c8ccd0cf
commit 43ff9713e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1822,6 +1822,6 @@ extern "C" void Save_DeleteFile(int fileNum) {
Ship::ExecuteHooks<Ship::DeleteFile>(fileNum);
}
extern "C" bool Save_Exist(int fileNum) {
extern "C" u32 Save_Exist(int fileNum) {
return SaveManager::Instance->SaveFile_Exist(fileNum);
}