Changeset - r1094:a5fbfc9ddcd7
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-01-22 22:46:10
tron@openttd.org
(svn r1595) EmergencySave() is only used on WIN32, add preprocessor guard to hide it everywhere else
1 file changed with 2 insertions and 0 deletions:
0 comments (0 inline, 0 general)
saveload.c
Show inline comments
 
@@ -1134,11 +1134,13 @@ init_err:
 
	return SL_OK;
 
}
 

	
 
#ifdef WIN32
 
bool EmergencySave(void)
 
{
 
	SaveOrLoad("crash.sav", SL_SAVE);
 
	return true;
 
}
 
#endif
 

	
 
void DoExitSave(void)
 
{
0 comments (0 inline, 0 general)