mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
Improve console dump with additional information, such as array sizes and variadic function
This commit is contained in:
parent
74b7e4cd89
commit
08144a1a55
2 changed files with 27 additions and 7 deletions
|
|
@ -1607,8 +1607,10 @@ namespace {
|
|||
|
||||
if (dStrcmp(nativeType, "char*") == 0 || dStrcmp(nativeType, "char *") == 0)
|
||||
return "string";
|
||||
else if (dStrcmp(nativeType, "S32") == 0 || dStrcmp(nativeType, "U32") == 0)
|
||||
else if (dStrcmp(nativeType, "S32") == 0)
|
||||
return "int";
|
||||
else if (dStrcmp(nativeType, "U32") == 0)
|
||||
return "uint";
|
||||
else if (dStrcmp(nativeType, "F32") == 0)
|
||||
return "float";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue