From 56bc64a3a10a656616a99e21126be8c26367ffed Mon Sep 17 00:00:00 2001 From: Darkvater Date: Sat, 14 May 2005 19:34:59 +0000 Subject: (svn r2309) - CodeChange: Change all _iconsole_color_whatever into _icolour_wtv (abbreviated). Besides the changed into proper english, yes this commit is pretty useless ;) --- settings_gui.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'settings_gui.c') 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[] = { -- cgit v1.2.3-54-g00ecf