X-Git-Url: https://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=blobdiff_plain;f=src%2Fgame%2Fg_console.pas;h=4141f27aeb4b6f66d7f2809559ec52fa42c7e184;hp=7caa3ba142386b5eac3b72d0a977f6d529218cc3;hb=0f52924bd95347684a7635a9843802364b6d9712;hpb=6fc3ad181843ea8ee8c1be9060fda475b8d906b4 diff --git a/src/game/g_console.pas b/src/game/g_console.pas index 7caa3ba..4141f27 100644 --- a/src/game/g_console.pas +++ b/src/game/g_console.pas @@ -37,6 +37,7 @@ uses LAST_ACTION = ACTION_WEAPPREV; procedure g_Console_Init; +procedure g_Console_SysInit; procedure g_Console_Update; procedure g_Console_Draw (MessagesOnly: Boolean = False); procedure g_Console_Char (C: AnsiChar); @@ -831,11 +832,9 @@ begin end end; -procedure g_Console_Init(); - var - a: Integer; +procedure g_Console_SysInit; + var a: Integer; begin - g_Texture_CreateWAD(ID, GameWAD+':TEXTURES\CONSOLE'); Cons_Y := -Floor(gScreenHeight * ConsoleHeight); gConsoleShow := False; gChatShow := False; @@ -1019,7 +1018,11 @@ begin g_Console_ReadConfig(GameDir + '/dfconfig.cfg'); g_Console_ReadConfig(GameDir + '/autoexec.cfg'); gParsingBinds := False; +end; +procedure g_Console_Init; +begin + g_Texture_CreateWAD(ID, GameWAD+':TEXTURES\CONSOLE'); g_Console_Add(Format(_lc[I_CONSOLE_WELCOME], [GAME_VERSION])); g_Console_Add(''); end;