mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
Fix EngineAPI xml generation, utilizing fixed_tuple for default args
This commit is contained in:
parent
c1e64ff3bd
commit
a84145421f
3 changed files with 162 additions and 2 deletions
|
|
@ -197,7 +197,7 @@ static String getDefaultArgumentValue( const EngineFunctionInfo* function, const
|
|||
//TODO: for now we store string literals in ASCII; needs to be sorted out
|
||||
if( TYPE< const char* >() == type )
|
||||
{
|
||||
const char* val = getArgValue< const char* >( defaultArgs, offset );
|
||||
const char* val = reinterpret_cast< const char* >(defaultArgs->getArgs() + offset);
|
||||
value = val;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue