1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 03:56:10 +08:00

Remove Plat_IsInDebugSessionRaw. No longer exists

This commit is contained in:
Nick Hastings
2023-05-16 14:20:09 -04:00
committed by Nicholas Hastings
parent a2b25a98eb
commit bdf731b2db

View File

@ -703,11 +703,7 @@ typedef unsigned int uint;
// Returns true if debugger attached, false otherwise
//-----------------------------------------------------------------------------
#if defined( PLATFORM_WINDOWS ) || defined( PLATFORM_LINUX ) || defined( PLATFORM_OSX )
PLATFORM_INTERFACE bool Plat_IsInDebugSessionRaw();
inline bool Plat_IsInDebugSession()
{
return Plat_IsInDebugSessionRaw();
}
PLATFORM_INTERFACE bool Plat_IsInDebugSession();
PLATFORM_INTERFACE void Plat_DebugString( const tchar * );
#else
inline bool Plat_IsInDebugSession() { return false; }