From 5f30794961808d0bca72bbaf4e5495707a44c1ca Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Tue, 14 May 2013 09:52:37 -0400 Subject: [PATCH] Removed ShouldUseNewAssertDialog from tier0 exports. It's gone. --- public/tier0/dbg.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/public/tier0/dbg.h b/public/tier0/dbg.h index a24ab927..5ebccbc2 100644 --- a/public/tier0/dbg.h +++ b/public/tier0/dbg.h @@ -83,12 +83,10 @@ class Color; //----------------------------------------------------------------------------- PLATFORM_INTERFACE void _ExitOnFatalAssert( const tchar* pFile, int line ); -PLATFORM_INTERFACE bool ShouldUseNewAssertDialog(); PLATFORM_INTERFACE bool SetupWin32ConsoleIO(); // Returns true if they want to break in the debugger. -PLATFORM_INTERFACE bool DoNewAssertDialog( const tchar *pFile, int line, const tchar *pExpression ); /* Used to define macros, never use these directly. */ @@ -100,8 +98,6 @@ PLATFORM_INTERFACE bool DoNewAssertDialog( const tchar *pFile, int line, const t _executeExp; \ if ( ret == LR_DEBUGGER ) \ { \ - if ( !ShouldUseNewAssertDialog() || DoNewAssertDialog( __TFILE__, __LINE__, _msg ) ) \ - DebuggerBreak(); \ if ( _bFatal ) \ _ExitOnFatalAssert( __TFILE__, __LINE__ ); \ } \