Skip to content

Commit

Permalink
Fix error when building in projects with bValidateFormatStrings enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmeisel committed Jul 10, 2024
1 parent 30f4fe0 commit a70355c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ void FHandGesture::DumpGestureState(int GestureIndex, UHandPoseRecognizer const*
for (auto const& TimedPose : TimedPoses)
{
UE_LOG(LogHandPoseRecognition, Display, TEXT(" %c %d %8s[%d] %05.3f - %05.3f"),
CurrentStep==Step ? '>' : ' ', Step,
CurrentStep==Step ? TEXT('>') : TEXT(' '), Step,
*(HandPoseRecognizer->Poses[TimedPose.PoseIndex].PoseName),
TimedPose.PoseIndex,
TimedPose.StepFirstTime,
Expand Down

0 comments on commit a70355c

Please sign in to comment.