Added FTX.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@364 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-04-27 23:17:23 +00:00
parent 969a9301d8
commit 78c9fe306a
20 changed files with 6723 additions and 382 deletions

View File

@@ -232,7 +232,7 @@ Exit:
#if defined( FLM_DEBUG)
if( bAssert)
{
flmAssert( 0);
f_assert( 0);
}
#else
F_UNREFERENCED_PARM( bAssert);
@@ -507,9 +507,13 @@ Exit:
/****************************************************************************
Desc:
****************************************************************************/
void FLMAPI f_enterDebugger( void)
void FLMAPI f_enterDebugger(
const char * pszFile,
int iLine)
{
#ifdef FLM_WIN
fprintf( stderr, "Assertion failed in %s on line %d\n", pszFile, iLine);
fflush( stderr);
DebugBreak();
#else
assert( 0);