mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-25 17:43:44 +00:00
Fixed bad string compares and simdictionary
This commit is contained in:
parent
acb192e2a5
commit
9907c4592e
30 changed files with 169 additions and 202 deletions
|
|
@ -507,7 +507,7 @@ DefineConsoleMethod( EventManager, dumpSubscribers, void, ( const char * listene
|
|||
"Print all subscribers to an event to the console.\n"
|
||||
"@param event The event whose subscribers are to be printed. If this parameter isn't specified, all events will be dumped." )
|
||||
{
|
||||
if( listenerName != "" )
|
||||
if (dStrcmp(listenerName, "") != 0)
|
||||
object->dumpSubscribers( listenerName );
|
||||
else
|
||||
object->dumpSubscribers();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue