mirror of
https://github.com/ioquake/jedi-outcast.git
synced 2025-02-22 11:51:55 +00:00
hide a OutputDebugString call with _DEBUG, matches the rest of the code
This commit is contained in:
parent
8eaf16469b
commit
72b488e1c1
1 changed files with 2 additions and 0 deletions
|
@ -44,7 +44,9 @@ ICARUS_Instance *ICARUS_Instance::Create( interface_export_t *ie )
|
||||||
ICARUS_Instance *instance = new ICARUS_Instance;
|
ICARUS_Instance *instance = new ICARUS_Instance;
|
||||||
instance->m_interface = ie;
|
instance->m_interface = ie;
|
||||||
|
|
||||||
|
#ifdef _DEBUG
|
||||||
OutputDebugString( "ICARUS Instance successfully created\n" );
|
OutputDebugString( "ICARUS Instance successfully created\n" );
|
||||||
|
#endif
|
||||||
|
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue