From: Ketmar Dark Date: Sat, 12 Oct 2019 17:50:31 +0000 (+0300) Subject: game: slightly better debug logs X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=commitdiff_plain;h=ad2c58b32ddcf077c5967b70e104851bb7852ad0 game: slightly better debug logs --- diff --git a/src/game/g_game.pas b/src/game/g_game.pas index ae66faa..317f0c4 100644 --- a/src/game/g_game.pas +++ b/src/game/g_game.pas @@ -4675,6 +4675,7 @@ begin NetState := NET_STATE_NONE; Exit; end; + e_LogWritefln('using downloaded map wad [%s] for [%s]`', [newResPath, WadName], TMsgType.Notify); end; newResPath := ExtractRelativePath(MapsDir, newResPath); @@ -5010,7 +5011,7 @@ end; procedure g_Game_ClientWAD(NewWAD: String; const WHash: TMD5Digest); var - gWAD: String; + gWAD, xwad: String; begin if not g_Game_IsClient then Exit; //e_LogWritefln('*** g_Game_ClientWAD: `%s`', [NewWAD]); @@ -5023,7 +5024,9 @@ begin Exit; end; - NewWAD := ExtractRelativePath(MapsDir, gWAD); + xwad := ExtractRelativePath(MapsDir, gWAD); + e_LogWritefln('using downloaded client map wad [%s] for [%s]`', [xwad, NewWAD], TMsgType.Notify); + NewWAD := xwad; g_Game_LoadWAD(NewWAD); {