mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
- Data type changes - Templates removed git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@871 3b4a5df2-a311-0410-b5c6-a8a6f20db521
31 lines
698 B
C
31 lines
698 B
C
#ifndef __SYS_GLOBALS_H
|
|
#define __SYS_GLOBALS_H
|
|
|
|
#define SHOW_MIN_FPS 0
|
|
#define SHOW_FULL_FPS 1
|
|
|
|
extern CHAR8 gubErrorText[ 200 ];
|
|
extern BOOLEAN gfAniEditMode;
|
|
extern BOOLEAN gfEditMode;
|
|
extern BOOLEAN fFirstTimeInGameScreen;
|
|
extern BOOLEAN fDirtyRectangleMode;
|
|
extern CHAR8 gDebugStr[128];
|
|
extern CHAR8 gSystemDebugStr[128];
|
|
|
|
extern BOOLEAN gfMode;
|
|
extern INT16 gsCurrentActionPoints;
|
|
extern INT8 gbFPSDisplay;
|
|
extern BOOLEAN gfResetInputCheck;
|
|
extern BOOLEAN gfGlobalError;
|
|
|
|
extern UINT32 guiGameCycleCounter;
|
|
|
|
|
|
// VIDEO OVERLAYS
|
|
extern INT32 giFPSOverlay;
|
|
extern INT32 giCounterPeriodOverlay;
|
|
|
|
extern BOOLEAN SET_ERROR( const STR8 String, ...);
|
|
|
|
#endif
|