summaryrefslogtreecommitdiff
path: root/misc_gui.c
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2006-03-25 09:22:10 +0000
committerDarkvater <Darkvater@openttd.org>2006-03-25 09:22:10 +0000
commite3685faad0456828b4a2e19f97d5574f6d12cd9d (patch)
tree86d8ae1e4f41e2d9e2ecfe600c9e0bcd66d31b18 /misc_gui.c
parent7916911a13be35633ee55fcd12175960e87c5346 (diff)
downloadopenttd-e3685faad0456828b4a2e19f97d5574f6d12cd9d.tar.xz
(svn r4105) - Feature: Add proper ISO-8859-15 <> LOCALCODE conversion. As the mess that is makefile can't properly support it at the moment, it is only available for MACOSX. Windows doesn't need FS conversion and I have no idea about OS/2 so it's disabled for them.
- CodeChange: Change the function GetCurrentLocale(). It returns the locale from some default environment-variables, plus a custom one defined as parameter. If all fail, it tries $LANG.
Diffstat (limited to 'misc_gui.c')
-rw-r--r--misc_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc_gui.c b/misc_gui.c
index 724e9599e..68245528c 100644
--- a/misc_gui.c
+++ b/misc_gui.c
@@ -1357,7 +1357,7 @@ static void SaveLoadDlgWndProc(Window *w, WindowEvent *e)
break;
case WE_TIMEOUT:
if (HASBIT(w->click_state, 11)) { /* Delete button clicked */
- if (!FiosDelete(WP(w,querystr_d).text.buf)) {
+ if (!FiosDelete(OTTD2FS(WP(w,querystr_d).text.buf))) {
ShowErrorMessage(INVALID_STRING_ID, STR_4008_UNABLE_TO_DELETE_FILE, 0, 0);
} else {
BuildFileList();