some work on fcollada import
This commit is contained in:
@@ -237,7 +237,7 @@ fstring FUFileManager::MakeFilePathAbsolute(const fstring& _filePath)
|
||||
|
||||
if (filePath.size() < 2 || (filePath[1] != ':' && filePath[1] != '|'))
|
||||
{
|
||||
filePath.insert(0, '/');
|
||||
filePath.insert(0, "/");//'/');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@ void FUUniqueStringMapT<Builder>::AddUniqueString(typename Builder::String& want
|
||||
{
|
||||
// Attempt to generate a new string by appending an increasing counter.
|
||||
uint32 counter = 2;
|
||||
static const maxCounter = 256;
|
||||
static const int maxCounter = 256;
|
||||
Builder buffer;
|
||||
buffer.reserve(wantedStr.length() + 5);
|
||||
do
|
||||
|
||||
Reference in New Issue
Block a user