DEADSOFTWARE

updated enet headers
[d2df-sdl.git] / src / game / Doom2DF.dpr
index a9044fb9d614cff917282b7baa15a337246458a7..3df542a714c189c1cb42bc234b6e6a4bd4645bd9 100644 (file)
@@ -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',
@@ -102,6 +96,7 @@ uses
   fmodtypes in '../lib/FMOD/fmodtypes.pas',
 {$ENDIF}
   BinEditor in '../shared/BinEditor.pas',
+  envvars in '../shared/envvars.pas',
   g_panel in 'g_panel.pas',
   g_language in 'g_language.pas',
   ImagingTypes,
@@ -117,7 +112,11 @@ var
   f: Integer;
   noct: Boolean = false;
 begin
-  for f := 1 to ParamCount do if ParamStr(f) = '--gdb' then noct := true;
+  for f := 1 to ParamCount do
+  begin
+         if ParamStr(f) = '--gdb' then noct := true
+    else if ParamStr(f) = '--log' then conbufDumpToStdOut := true;
+  end;
   if noct then
     Main()
   else
@@ -128,6 +127,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.