summaryrefslogtreecommitdiff
path: root/settings.c
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2006-03-14 22:58:46 +0000
committerDarkvater <Darkvater@openttd.org>2006-03-14 22:58:46 +0000
commit19dee66a265eef14ac25e594fd8fbd992f46724e (patch)
treea357bc84be50899e5f36c9583ecdb605b1288904 /settings.c
parent5642bbb91df7e3bbb057fd4356521f7f68b798cc (diff)
downloadopenttd-19dee66a265eef14ac25e594fd8fbd992f46724e.tar.xz
(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.
Diffstat (limited to 'settings.c')
-rw-r--r--settings.c2
1 files changed, 1 insertions, 1 deletions
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;