mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +00:00
* [SFXDescription] BugFix: Correct a data corruption issue in converting legacy channel values.
This commit is contained in:
parent
f1a48df676
commit
4dea3810b9
1 changed files with 2 additions and 1 deletions
|
|
@ -454,7 +454,8 @@ bool SFXDescription::onAdd()
|
||||||
const char* channelValue = getDataField( sChannel, NULL );
|
const char* channelValue = getDataField( sChannel, NULL );
|
||||||
if( channelValue && channelValue[ 0 ] )
|
if( channelValue && channelValue[ 0 ] )
|
||||||
{
|
{
|
||||||
const char* group = Con::evaluatef( "return sfxOldChannelToGroup( %s );", channelValue );
|
ConsoleValue result = Con::evaluatef( "return sfxOldChannelToGroup( %s );", channelValue );
|
||||||
|
const char* group = result.getString();
|
||||||
if( !Sim::findObject( group, mSourceGroup ) )
|
if( !Sim::findObject( group, mSourceGroup ) )
|
||||||
Con::errorf( "SFXDescription::onAdd - could not resolve channel '%s' to SFXSource", channelValue );
|
Con::errorf( "SFXDescription::onAdd - could not resolve channel '%s' to SFXSource", channelValue );
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue