From dfc5baae34dbbdc417d743a3c9e785aab95fb76b Mon Sep 17 00:00:00 2001 From: Kyle B Date: Mon, 23 Aug 2021 12:46:00 -0700 Subject: [PATCH] fixed casting errors Signed-off-by: Kyle B --- .../CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp index b1bfb30285..ade4beaa33 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp @@ -109,7 +109,7 @@ namespace AZ } values.reserve(lodCount + 1); - values.push_back({0, "Default (Highest)" }); + values.push_back({ aznumeric_cast(0), "Default (Highest)" }); for (uint32_t i = 1; i < lodCount; ++i) {