Changeset - r887:7b26b4b25022
[Not reviewed]
master
0 1 0
darkvater - 19 years ago 2005-01-04 16:04:28
darkvater@openttd.org
(svn r1373) -Fix: compilation fix for windows
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
console_cmds.c
Show inline comments
 
@@ -147,13 +147,13 @@ extern void SetFiosType(const byte fiost
 
static void LoadMap(uint no)
 
{
 
	/* Build file list */
 
	BuildFileList();
 

	
 
	/* Check if in range */
 
	if (no != 0 && no <= _fios_num) {
 
	if (no != 0 && no <= (uint)_fios_num) {
 
		const FiosItem *item = &_fios_list[no - 1];
 

	
 
		/* Load the file */
 
		_switch_mode = SM_LOAD;
 
		SetFiosType(item->type);
 
		strcpy(_file_to_saveload.name, FiosBrowseTo(item));
0 comments (0 inline, 0 general)