mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@21 3b4a5df2-a311-0410-b5c6-a8a6f20db521
57 lines
803 B
C
57 lines
803 B
C
#ifndef __DEBUG_CONTROL_
|
|
#define __DEBUG_CONTROL_
|
|
|
|
#include "types.h"
|
|
|
|
|
|
//#define _PHYSICSSUBSYSTEM_DEBUG
|
|
//#define _AISUBSYSTEM_DEBUG
|
|
|
|
#ifdef JA2BETAVERSION
|
|
// #define _ANIMSUBSYSTEM_DEBUG
|
|
#endif
|
|
|
|
|
|
void LiveMessage( CHAR8 *strMessage);
|
|
|
|
|
|
#ifdef _ANIMSUBSYSTEM_DEBUG
|
|
|
|
#define AnimDebugMsg(c) AnimDbgMessage( (c) )
|
|
|
|
extern void AnimDbgMessage( CHAR8 *Str);
|
|
|
|
#else
|
|
|
|
#define AnimDebugMsg(c)
|
|
|
|
#endif
|
|
|
|
|
|
#ifdef _PHYSICSSUBSYSTEM_DEBUG
|
|
|
|
#define PhysicsDebugMsg(c) PhysicsDbgMessage( (c) )
|
|
|
|
extern void PhysicsDbgMessage( CHAR8 *Str);
|
|
|
|
#else
|
|
|
|
#define PhysicsDebugMsg(c)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _AISUBSYSTEM_DEBUG
|
|
|
|
#define AiDebugMsg(c) AiDbgMessage( (c) )
|
|
|
|
extern void AiDbgMessage( CHAR8 *Str);
|
|
|
|
#else
|
|
|
|
#define AiDebugMsg(c)
|
|
|
|
#endif
|
|
|
|
#endif |