diff options
author | belugas <belugas@openttd.org> | 2006-11-06 19:59:19 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2006-11-06 19:59:19 +0000 |
commit | 54b0726d587d8cae01d92bfeae9762e7eda8b0e7 (patch) | |
tree | b31f3dd357fef59314f38088dde4f0c5a63354df | |
parent | 701c47fb4aa37466552102be487f5938daad0c69 (diff) | |
download | openttd-54b0726d587d8cae01d92bfeae9762e7eda8b0e7.tar.xz |
(svn r7083) -Fix 6631: Protect out of boundaries widget testing
-rw-r--r-- | misc_gui.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/misc_gui.c b/misc_gui.c index 4ebe9edd6..1347eede7 100644 --- a/misc_gui.c +++ b/misc_gui.c @@ -1502,6 +1502,10 @@ static void SaveLoadDlgWndProc(Window *w, WindowEvent *e) } break; case WE_TIMEOUT: + /* This test protects against using widgets 11 and 12 which are only available + * in those two saveload mode */ + if (!(_saveload_mode == SLD_SAVE_GAME || _saveload_mode == SLD_SAVE_SCENARIO)) break; + if (IsWindowWidgetLowered(w, 11)) { /* Delete button clicked */ if (!FiosDelete(OTTD2FS(WP(w,querystr_d).text.buf))) { ShowErrorMessage(INVALID_STRING_ID, STR_4008_UNABLE_TO_DELETE_FILE, 0, 0); |