mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 14:44:36 +00:00
Merge pull request #753 from Areloch/miscFixes20220327
Misc Fixes for 2022/03/27
This commit is contained in:
commit
c64671ff91
27 changed files with 311 additions and 127 deletions
|
|
@ -1373,6 +1373,11 @@ DefineEngineFunction(saveScaledImage, bool, (const char* bitmapSource, const cha
|
|||
return false;
|
||||
}
|
||||
|
||||
if (!Platform::isFile(bitmapSource))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
//First, gotta check the extension, as we have some extra work to do if it's
|
||||
//a DDS file
|
||||
const char* ret = dStrrchr(bitmapSource, '.');
|
||||
|
|
|
|||
|
|
@ -204,7 +204,7 @@ void GuiConvexEditorCtrl::setVisible( bool val )
|
|||
mConvexHL = NULL;
|
||||
mFaceHL = -1;
|
||||
|
||||
setSelection( NULL, -1 );
|
||||
setSelection( NULL, -1 );
|
||||
|
||||
WorldEditor *wedit;
|
||||
if ( Sim::findObject( "EWorldEditor", wedit ) )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue