verve compilation correction - need to cast to char *, not use the raw string for the con:: series of methods

This commit is contained in:
Brian Roberts 2019-05-21 19:34:51 -05:00
parent 5a11340af2
commit 5769d65b92

View file

@ -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;
}