mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 19:53:48 +00:00
Fixed type inference for nulls in console functions
This commit is contained in:
parent
733fd3ef6d
commit
88106f9032
17 changed files with 29 additions and 22 deletions
|
|
@ -1991,7 +1991,7 @@ DefineEngineMethod( ActionMap, unbindObj, bool, ( const char* device, const char
|
|||
return object->processUnbind( device, action, simObject );
|
||||
}
|
||||
|
||||
DefineEngineMethod( ActionMap, save, void, ( const char* fileName, bool append ), ( NULL, false ),
|
||||
DefineEngineMethod( ActionMap, save, void, ( const char* fileName, bool append ), ( nullAsType<const char*>(), false ),
|
||||
"@brief Saves the ActionMap to a file or dumps it to the console.\n\n"
|
||||
"@param fileName The file path to save the ActionMap to. If a filename is not specified "
|
||||
" the ActionMap will be dumped to the console.\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue