1
0
Fork 0

(svn r1595) EmergencySave() is only used on WIN32, add preprocessor guard to hide it everywhere else

release/0.4.5
tron 2005-01-22 22:46:10 +00:00
parent 189ca73707
commit e75c48ec7a
1 changed files with 2 additions and 0 deletions

View File

@ -1134,11 +1134,13 @@ init_err:
return SL_OK; return SL_OK;
} }
#ifdef WIN32
bool EmergencySave(void) bool EmergencySave(void)
{ {
SaveOrLoad("crash.sav", SL_SAVE); SaveOrLoad("crash.sav", SL_SAVE);
return true; return true;
} }
#endif
void DoExitSave(void) void DoExitSave(void)
{ {