Fix missing assert

This commit is contained in:
dsc 2021-03-27 22:23:24 +01:00
parent 06221018e7
commit f6804a7c09
1 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
#include <functional>
#include <locale>
#include <codecvt>
#include <vrcommon/assert.h>
#include <stdarg.h>
#if defined( _WIN32 )
#include <windows.h>
@ -128,7 +128,7 @@ std::string Format( const char *pchFormat, ... )
// Something went fairly wrong
if ( unSize < 0 )
{
AssertMsg( false, "Format string parse failure" );
//AssertMsg( false, "Format string parse failure" );
return "";
}
@ -149,7 +149,7 @@ std::string Format( const char *pchFormat, ... )
// Double check, just in case
if ( unSize < 0 )
{
AssertMsg( false, "Format string parse failure" );
//AssertMsg( false, "Format string parse failure" );
return "";
}