summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-19 19:45:04 +0000
committertruelight <truelight@openttd.org>2006-08-19 19:45:04 +0000
commit33fc532d1b6023954bdd382d4e6935dd14c29560 (patch)
tree0d646c6d03a6e67cfc57e0b24c66abd415a874c5
parentd483243379ce7b2d3025edcd2b80522f5b2b47c8 (diff)
downloadopenttd-33fc532d1b6023954bdd382d4e6935dd14c29560.tar.xz
(svn r5955) -Fix r5728: 2 very important lines for ShowQueryString where removed by excident.
Because of this you couldn't join servers with passwords, and more of those problems. (tnx Mucht)
-rw-r--r--intro_gui.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/intro_gui.c b/intro_gui.c
index a896386e3..7704c3b3e 100644
--- a/intro_gui.c
+++ b/intro_gui.c
@@ -81,6 +81,9 @@ static void SelectGameWndProc(Window *w, WindowEvent *e)
case 15: AskExitGame(); break;
}
break;
+
+ case WE_ON_EDIT_TEXT: HandleOnEditText(e); break;
+ case WE_ON_EDIT_TEXT_CANCEL: HandleOnEditTextCancel(); break;
}
}