mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-20 13:23:45 -07:00
fix: bool defintion causing fast file select crash (#2142)
Co-authored-by: briaguya <briaguya@alice>
This commit is contained in:
parent
15c8ccd0cf
commit
43ff9713e9
1 changed files with 1 additions and 1 deletions
|
@ -1822,6 +1822,6 @@ extern "C" void Save_DeleteFile(int fileNum) {
|
||||||
Ship::ExecuteHooks<Ship::DeleteFile>(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);
|
return SaveManager::Instance->SaveFile_Exist(fileNum);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue