Changeset - r11318:420549341fb1
[Not reviewed]
master
0 1 0
glx - 15 years ago 2009-03-11 17:40:49
glx@openttd.org
(svn r15673) -Fix: it was not possible to compile a win32 dedicated server (even if 'configure --enable-dedicated' passed)
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/settings.cpp
Show inline comments
 
@@ -1216,8 +1216,8 @@ static const SettingDesc _music_settings
 
	 SDT_END()
 
};
 

	
 
/* win32_v.c only settings */
 
#ifdef WIN32
 
/* win32_v.cpp only settings */
 
#if defined(WIN32) && !defined(DEDICATED)
 
extern bool _force_full_redraw, _window_maximize;
 
extern uint _display_hz, _fullscreen_bpp;
 

	
 
@@ -1880,7 +1880,7 @@ static void HandleSettingDescs(IniFile *
 
{
 
	proc(ini, (const SettingDesc*)_misc_settings,    "misc",  NULL);
 
	proc(ini, (const SettingDesc*)_music_settings,   "music", &msf);
 
#ifdef WIN32
 
#if defined(WIN32) && !defined(DEDICATED)
 
	proc(ini, (const SettingDesc*)_win32_settings,   "win32", NULL);
 
#endif /* WIN32 */
 

	
0 comments (0 inline, 0 general)