mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 15:44:36 +00:00
verve compilation correction - need to cast to char *, not use the raw string for the con:: series of methods
This commit is contained in:
parent
9592275fb8
commit
2e1fe56815
1 changed files with 1 additions and 1 deletions
|
|
@ -238,7 +238,7 @@ void VMotionTrack::attachObject( void )
|
||||||
&& !getController()->getDataValue( mOrientationData, orientationDataValue ) )
|
&& !getController()->getDataValue( mOrientationData, orientationDataValue ) )
|
||||||
{
|
{
|
||||||
// Sanity!
|
// Sanity!
|
||||||
Con::warnf( "Unable to located the value for the given orientation data key, '%s'", mOrientationData );
|
Con::warnf( "Unable to located the value for the given orientation data key, '%s'", mOrientationData.c_str() );
|
||||||
// Clear.
|
// Clear.
|
||||||
orientationDataValue = String::EmptyString;
|
orientationDataValue = String::EmptyString;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue