Browse Source

system: fix win32 build

pull/2/head
a1batross 6 years ago
parent
commit
05eab0b5b0
  1. 2
      engine/common/system.c

2
engine/common/system.c

@ -52,7 +52,7 @@ double GAME_EXPORT Sys_DoubleTime( void ) @@ -52,7 +52,7 @@ double GAME_EXPORT Sys_DoubleTime( void )
qboolean Sys_DebuggerPresent(); // see sys_linux.c
#ifdef _MSC_VER
#define DEBUG_BREAK \
if( Sys_IsDebuggerPresent() ) \
if( Sys_DebuggerPresent() ) \
_asm{ int 3 }
#elif __i386__
#define DEBUG_BREAK \

Loading…
Cancel
Save