manage path routines

This commit is contained in:
Garux
2021-01-22 02:21:54 +03:00
parent b0e62198ba
commit d734199601
18 changed files with 50 additions and 98 deletions

View File

@@ -38,9 +38,7 @@
#include "stringio.h"
void parseShaderName( CopiedString& name, const char* token ){
StringOutputStream cleaned( 256 );
cleaned << PathCleaned( token );
name = cleaned.c_str();
name = StringOutputStream( 256 )( PathCleaned( token ) ).c_str();
}
class Doom3ModelSkin