From 19dee66a265eef14ac25e594fd8fbd992f46724e Mon Sep 17 00:00:00 2001 From: Darkvater Date: Tue, 14 Mar 2006 22:58:46 +0000 Subject: (svn r3875) - [Patches] Fix up the intro menu so the right values for the mapsize are shown (the default ones). Setting the value involves a small hack in that we also set the _patches value because that is used for world-generation and only inside there do the values get copied from _newgame - [Patches] Fix a stupid, stupid bug where I used sizeof() as length instead of strlen() in getting console values for patches. --- settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'settings.c') diff --git a/settings.c b/settings.c index 0dde5c2a9..350dd4041 100644 --- a/settings.c +++ b/settings.c @@ -1420,7 +1420,7 @@ static const SettingDesc *GetPatchFromName(const char *name, uint *i) const SettingDesc *sd; for (*i = 0, sd = _patch_settings; sd->save.cmd != SL_END; sd++, (*i)++) { - if (strncmp(sd->desc.name, name, sizeof(sd->desc.name)) == 0) return sd; + if (strncmp(sd->desc.name, name, strlen(sd->desc.name)) == 0) return sd; } return NULL; -- cgit v1.2.3-54-g00ecf