hide a OutputDebugString call with _DEBUG, matches the rest of the code

This commit is contained in:
Jonathan Gray 2013-04-22 19:03:17 +10:00
parent 8eaf16469b
commit 72b488e1c1

View file

@ -44,7 +44,9 @@ ICARUS_Instance *ICARUS_Instance::Create( interface_export_t *ie )
ICARUS_Instance *instance = new ICARUS_Instance;
instance->m_interface = ie;
#ifdef _DEBUG
OutputDebugString( "ICARUS Instance successfully created\n" );
#endif
return instance;
}