mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-18 14:13:48 +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
5a11340af2
commit
5769d65b92
1 changed files with 1 additions and 1 deletions
|
|
@ -238,7 +238,7 @@ void VMotionTrack::attachObject( void )
|
|||
&& !getController()->getDataValue( mOrientationData, orientationDataValue ) )
|
||||
{
|
||||
// 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.
|
||||
orientationDataValue = String::EmptyString;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue