mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-09 23:40:42 +00:00
Implementation of updated handling of Legacy Project importer to better seperate out importer versions as well as more explicit processing of incoming content
This commit is contained in:
parent
3812ce2e82
commit
ecd35df7e9
14 changed files with 3107 additions and 2663 deletions
|
|
@ -623,8 +623,8 @@ const char* ShapeAsset::generateCachedPreviewImage(S32 resolution, String overri
|
|||
|
||||
String dumpPath = String(mFilePath) + "_Preview.dds";
|
||||
|
||||
char* returnBuffer = Con::getReturnBuffer(dumpPath.length());
|
||||
dSprintf(returnBuffer, dumpPath.length(), "%s", dumpPath.c_str());
|
||||
char* returnBuffer = Con::getReturnBuffer(128);
|
||||
dSprintf(returnBuffer, 128, "%s", dumpPath.c_str());
|
||||
|
||||
/*FileStream stream;
|
||||
if (stream.open(dumpPath, Torque::FS::File::Write))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue