From e8917e0f069b366eeac952c00da46670220222b9 Mon Sep 17 00:00:00 2001 From: karlberg Date: Fri, 7 May 2021 10:36:34 -0700 Subject: [PATCH] Fix for format string type mismatch --- .../Components/LocalPredictionPlayerInputComponent.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gems/Multiplayer/Code/Source/Components/LocalPredictionPlayerInputComponent.cpp b/Gems/Multiplayer/Code/Source/Components/LocalPredictionPlayerInputComponent.cpp index 5a8fbfbe33..1a73d5bc4b 100644 --- a/Gems/Multiplayer/Code/Source/Components/LocalPredictionPlayerInputComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Components/LocalPredictionPlayerInputComponent.cpp @@ -180,16 +180,16 @@ namespace Multiplayer } if (lostInput) { - AZLOG(NET_Prediction, "InputLost InputId=%u", input.GetClientInputId()); + AZLOG(NET_Prediction, "InputLost InputId=%u", aznumeric_cast(input.GetClientInputId())); } else { - AZLOG(NET_Prediction, "Processed InputId=%u", input.GetClientInputId()); + AZLOG(NET_Prediction, "Processed InputId=%u", aznumeric_cast(input.GetClientInputId())); } } else { - AZLOG(NET_Prediction, "Dropped InputId=%u", input.GetClientInputId()); + AZLOG(NET_Prediction, "Dropped InputId=%u", aznumeric_cast(input.GetClientInputId())); } --inputArrayIndex; }