diff options
author | truelight <truelight@openttd.org> | 2006-08-19 19:45:04 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2006-08-19 19:45:04 +0000 |
commit | ac5f0306e36ee526089f31aa647b4b5515e70030 (patch) | |
tree | 0d646c6d03a6e67cfc57e0b24c66abd415a874c5 | |
parent | 5892456e5d5a6a9050272c6e68e4eaeebe561791 (diff) | |
download | openttd-ac5f0306e36ee526089f31aa647b4b5515e70030.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.c | 3 |
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; } } |