mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-05 21:40:31 +00:00
Enforces filename string case sensitivity for assets' internal filenames, which avoids the stringtable messing with the case preventing file name case sensitivity issues.
This commit is contained in:
parent
c04f3ae166
commit
cfe122f714
18 changed files with 109 additions and 102 deletions
|
|
@ -72,7 +72,7 @@ ConsoleSetType( TypeAssetLooseFilePath )
|
|||
StringTableEntry* assetLooseFilePath = (StringTableEntry*)(dptr);
|
||||
|
||||
// Update asset loose file-path value.
|
||||
*assetLooseFilePath = StringTable->insert(pFieldValue);
|
||||
*assetLooseFilePath = StringTable->insert(pFieldValue, true);
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue