From 5769d65b92ebfadc97ce5b3ba656099b36839004 Mon Sep 17 00:00:00 2001 From: Brian Roberts Date: Tue, 21 May 2019 19:34:51 -0500 Subject: [PATCH] verve compilation correction - need to cast to char *, not use the raw string for the con:: series of methods --- Engine/source/Verve/Extension/Motion/VMotionTrack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/Verve/Extension/Motion/VMotionTrack.cpp b/Engine/source/Verve/Extension/Motion/VMotionTrack.cpp index 1042f5461..cc33f12db 100644 --- a/Engine/source/Verve/Extension/Motion/VMotionTrack.cpp +++ b/Engine/source/Verve/Extension/Motion/VMotionTrack.cpp @@ -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; }