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

@@ -1156,8 +1156,7 @@ public:
// parse string of format *pathToLoad/depth*path2ToLoad/depth*
// */depth* for root path
ModelFolders( const char* pathsString ){
StringOutputStream str( 128 );
str << PathCleaned( pathsString );
const auto str = StringOutputStream( 128 )( PathCleaned( pathsString ) );
const char* start = str.c_str();
while( 1 ){