X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=blobdiff_plain;f=src%2Fgame%2Fg_main.pas;h=86c5f843a0cdc5c7db7aeb8e79573d6e3a48496d;hp=df6bba16a9b77160b30f6af2a3be2c61e0f8eae7;hb=d92a9e2807dda8a533def35afa801ed975920885;hpb=78dc38833a49bf6225f221d9a0f179adc6acd007 diff --git a/src/game/g_main.pas b/src/game/g_main.pas index df6bba1..86c5f84 100644 --- a/src/game/g_main.pas +++ b/src/game/g_main.pas @@ -32,7 +32,6 @@ var MapsDir: string; ModelsDir: string; GameWAD: string; - gSkipFirstChar: Boolean; (* hack for console/chat input *) implementation @@ -491,38 +490,9 @@ var Msg: g_gui.TMessage; begin case K of - IK_PAUSE: // : - begin - if (g_ActiveWindow = nil) then g_Game_Pause(not gPause); - end; - - IK_BACKQUOTE, VK_CONSOLE: // <`/~/¨/¸>: - begin - if not gChatShow then - g_Console_Switch() - end; - - IK_ESCAPE: // : - begin - if gChatShow then - g_Console_Chat_Switch - else if gConsoleShow then - g_Console_Switch - end; - VK_ESCAPE: // : begin - if gChatShow then - begin - g_Console_Chat_Switch(); - Exit; - end; - - if gConsoleShow then - begin - g_Console_Switch(); - end - else if (g_ActiveWindow <> nil) then + if (g_ActiveWindow <> nil) then begin Msg.Msg := WM_KEYDOWN; Msg.WParam := VK_ESCAPE; @@ -601,10 +571,7 @@ var begin if gConsoleShow or gChatShow then begin - if gSkipFirstChar then - gSkipFirstChar := False - else - g_Console_Char(C) + g_Console_Char(C) end else if (g_ActiveWindow <> nil) then begin