From dd743bcea1e00b5b1314860bc3f1bda91419d5f1 Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 20 May 2010 15:14:10 +0000 Subject: (svn r19865) -Fix [FS#3830]: crash when changing locale settings from console due to strcpy-ing a string into a pointer --- src/settings_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/settings_internal.h') diff --git a/src/settings_internal.h b/src/settings_internal.h index f97627aac..8d57a10a8 100644 --- a/src/settings_internal.h +++ b/src/settings_internal.h @@ -86,7 +86,7 @@ typedef SettingDesc SettingDescGlobVarList; const SettingDesc *GetSettingFromName(const char *name, uint *i); bool SetSettingValue(uint index, int32 value, bool force_newgame = false); -bool SetSettingValue(uint index, const char *value); +bool SetSettingValue(uint index, const char *value, bool force_newgame = false); void SetCompanySetting(uint index, int32 value); extern VehicleDefaultSettings _old_vds; -- cgit v1.2.3-54-g00ecf