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 | 33fc532d1b6023954bdd382d4e6935dd14c29560 (patch) | |
tree | 0d646c6d03a6e67cfc57e0b24c66abd415a874c5 | |
parent | d483243379ce7b2d3025edcd2b80522f5b2b47c8 (diff) | |
download | openttd-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.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; } } |