mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Replace object's address format in getDebugInfo()
This commit is contained in:
parent
cbbd41ad19
commit
f77a18e0d2
|
|
@ -3178,7 +3178,7 @@ DefineEngineMethod( SimObject, getDebugInfo, ArrayObject*, (),,
|
|||
ArrayObject* array = new ArrayObject();
|
||||
array->registerObject();
|
||||
|
||||
array->push_back( "C++|Address", String::ToString( "0x%x", object ) );
|
||||
array->push_back( "C++|Address", String::ToString( "%p", object ) );
|
||||
array->push_back( "C++|Size", String::ToString( object->getClassRep()->getSizeof() ) );
|
||||
array->push_back( "Object|Description", object->describeSelf() );
|
||||
array->push_back( "Object|FileName", object->getFilename() );
|
||||
|
|
|
|||
Loading…
Reference in a new issue