File diff r25831:915e0876c67d → r25832:31ae4f709a39
src/openttd.cpp
Show inline comments
 
@@ -1384,25 +1384,25 @@ void StateGameLoop()
 
		cur_company.Restore();
 
	}
 

	
 
	assert(IsLocalCompany());
 
}
 

	
 
/**
 
 * Create an autosave. The default name is "autosave#.sav". However with
 
 * the setting 'keep_all_autosave' the name defaults to company-name + date
 
 */
 
static void DoAutosave()
 
{
 
	static int _autosave_ctr = 0;
 
	static FiosNumberedSaveName _autosave_ctr("autosave");
 
	DoAutoOrNetsave(_autosave_ctr);
 
}
 

	
 
/**
 
 * Request a new NewGRF scan. This will be executed on the next game-tick.
 
 * This is mostly needed to ensure NewGRF scans (which are blocking) are
 
 * done in the game-thread, and not in the draw-thread (which most often
 
 * triggers this request).
 
 * @param callback Optional callback to call when NewGRF scan is completed.
 
 * @return True when the NewGRF scan was actually requested, false when the scan was already running.
 
 */
 
bool RequestNewGRFScan(NewGRFScanCallback *callback)