X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fgame%2FDoom2DF.dpr;h=4123df2e5e01d8d69b15e4f75040e4b8b90528c5;hb=5aa51582e429a852142d419b1e3c23d93d31bc0b;hp=3fbd82967e4ab008d93e2f75585f3aad9b4ddc49;hpb=5b3da92681d54bd987d55c4a2649da65ebeb70ba;p=d2df-sdl.git diff --git a/src/game/Doom2DF.dpr b/src/game/Doom2DF.dpr index 3fbd829..4123df2 100644 --- a/src/game/Doom2DF.dpr +++ b/src/game/Doom2DF.dpr @@ -47,12 +47,6 @@ uses SDL2_mixer in '../lib/sdl2/SDL2_mixer.pas', {$ENDIF} ENet in '../lib/enet/enet.pp', - ENetTypes in '../lib/enet/enettypes.pp', - ENetList in '../lib/enet/enetlist.pp', - ENetTime in '../lib/enet/enettime.pp', - ENetProtocol in '../lib/enet/enetprotocol.pp', - ENetCallbacks in '../lib/enet/enetcallbacks.pp', - ENetPlatform in '../lib/enet/enetplatform.pp', e_graphics in '../engine/e_graphics.pas', e_input in '../engine/e_input.pas', e_log in '../engine/e_log.pas', @@ -76,6 +70,8 @@ uses g_nethandler in 'g_nethandler.pas', g_netmaster in 'g_netmaster.pas', g_res_downloader in 'g_res_downloader.pas', + g_grid in 'g_grid.pas', + z_aabbtree in 'z_aabbtree.pas', g_game in 'g_game.pas', g_gfx in 'g_gfx.pas', g_gui in 'g_gui.pas', @@ -101,7 +97,10 @@ uses fmodpresets in '../lib/FMOD/fmodpresets.pas', fmodtypes in '../lib/FMOD/fmodtypes.pas', {$ENDIF} + xprofiler in '../shared/xprofiler.pas', + binheap in '../shared/binheap.pas', BinEditor in '../shared/BinEditor.pas', + envvars in '../shared/envvars.pas', g_panel in 'g_panel.pas', g_language in 'g_language.pas', ImagingTypes, @@ -132,6 +131,6 @@ begin on E: Exception do e_WriteLog(Format(_lc[I_SYSTEM_ERROR_MSG], [E.Message]), MSG_FATALERROR); else - e_WriteLog(Format(_lc[I_SYSTEM_ERROR_UNKNOWN], [LongWord(ExceptAddr())]), MSG_FATALERROR); + e_WriteLog(Format(_lc[I_SYSTEM_ERROR_UNKNOWN], [NativeUInt(ExceptAddr())]), MSG_FATALERROR); end; end.