summaryrefslogtreecommitdiff
path: root/settings_gui.c
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2005-05-14 19:34:59 +0000
committerDarkvater <Darkvater@openttd.org>2005-05-14 19:34:59 +0000
commit56bc64a3a10a656616a99e21126be8c26367ffed (patch)
treec3d18eb9a703e698242619ab21907a43b82ed2f1 /settings_gui.c
parent57a44b42433b59762a591031feddc14ccca73009 (diff)
downloadopenttd-56bc64a3a10a656616a99e21126be8c26367ffed.tar.xz
(svn r2309) - CodeChange: Change all _iconsole_color_whatever into _icolour_wtv (abbreviated). Besides the changed into proper english, yes this commit is pretty useless ;)
Diffstat (limited to 'settings_gui.c')
-rw-r--r--settings_gui.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/settings_gui.c b/settings_gui.c
index 19e2acacf..bbe4af72a 100644
--- a/settings_gui.c
+++ b/settings_gui.c
@@ -1072,7 +1072,7 @@ void IConsoleSetPatchSetting(char *name, const char *value)
pe = IConsoleGetPatch(name, &page, &entry);
if (pe == NULL) {
- IConsolePrintF(_iconsole_color_warning, "'%s' is an unknown patch setting.", name);
+ IConsolePrintF(_icolour_warn, "'%s' is an unknown patch setting.", name);
return;
}
@@ -1095,7 +1095,7 @@ void IConsoleSetPatchSetting(char *name, const char *value)
tval2 = tval;
}
- IConsolePrintF(_iconsole_color_warning, "'%s' changed to: %s", name, tval2);
+ IConsolePrintF(_icolour_warn, "'%s' changed to: %s", name, tval2);
}
}
@@ -1107,7 +1107,7 @@ void IConsoleGetPatchSetting(const char *name)
/* We did not find the patch setting */
if (pe == NULL) {
- IConsolePrintF(_iconsole_color_warning, "'%s' is an unknown patch setting.", name);
+ IConsolePrintF(_icolour_warn, "'%s' is an unknown patch setting.", name);
return;
}
@@ -1116,7 +1116,7 @@ void IConsoleGetPatchSetting(const char *name)
} else
snprintf(value, sizeof(value), "%d", ReadPE(pe));
- IConsolePrintF(_iconsole_color_warning, "Current value for '%s' is: '%s'", name, value);
+ IConsolePrintF(_icolour_warn, "Current value for '%s' is: '%s'", name, value);
}
static const Widget _patches_selection_widgets[] = {