Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions sp/src/public/tier0/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -1276,14 +1276,19 @@ inline bool Plat_IsInDebugSession( bool bForceRecheck = false ) { return false;
//-----------------------------------------------------------------------------
PLATFORM_INTERFACE bool Is64BitOS();


#ifdef MAPBASE
//-----------------------------------------------------------------------------
// General Mapbase version constants compiled into projects for versioning purposes
//-----------------------------------------------------------------------------
#ifdef MAPBASE
#define MAPBASE_VERSION "8.0"
#define MAPBASE_VER_INT 8000 // For use in #if in a similar fashion to macros like _MSC_VER
#endif
#endif // MAPBASE

#ifdef MAPBASE
#define IsMapbase() true
#else
#define IsMapbase() false
#endif // MAPBASE


//-----------------------------------------------------------------------------
Expand Down