use globalWarningStream()

This commit is contained in:
Garux
2018-03-21 04:12:06 +03:00
parent 54a98ed5e8
commit b1e2f26124
24 changed files with 47 additions and 47 deletions

View File

@@ -779,7 +779,7 @@ void add_remap( const char *remap ){
if ( *ch == '\0' ) {
// bad remap
globalErrorStream() << "WARNING: Shader _remap key found in a model entity without a ; character\n";
globalWarningStream() << "WARNING: Shader _remap key found in a model entity without a ; character\n";
}
else {
pRemap = new remap_t;

View File

@@ -61,7 +61,7 @@ void PicoPrintFunc( int level, const char *str ){
break;
case PICO_WARNING:
globalErrorStream() << "PICO_WARNING: " << str << "\n";
globalWarningStream() << "PICO_WARNING: " << str << "\n";
break;
case PICO_ERROR: