mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-22 21:05:39 +00:00
Fix GCC9 complaints
This commit is contained in:
parent
ba1eb59e9f
commit
f52ae7f1b3
2 changed files with 5 additions and 5 deletions
|
|
@ -354,7 +354,7 @@ bool AssetImportObject::_setFilePath(void* obj, const char* index, const char* d
|
|||
void AssetImportObject::setFilePath(StringTableEntry pFilePath)
|
||||
{
|
||||
filePathString = pFilePath;
|
||||
filePath = pFilePath;
|
||||
filePath = Torque::Path(pFilePath);
|
||||
}
|
||||
|
||||
ConsoleDocClass(AssetImporter,
|
||||
|
|
@ -2041,7 +2041,7 @@ void AssetImporter::importAssets(AssetImportObject* assetItem)
|
|||
if (isMethod(processCommand.c_str()))
|
||||
{
|
||||
ConsoleValueRef importReturnVal = Con::executef(this, processCommand.c_str(), childItem);
|
||||
assetPath = importReturnVal.getStringValue();
|
||||
assetPath = Torque::Path(importReturnVal.getStringValue());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue