SPEC-6960 Android & Windows asset jobs have failing assets preventing the new ASV code submission gate from passing.

Use AZ::u64 instead of uint64_t to avoid issue that PRIu64 won't match uint64_t in some cases
This commit is contained in:
Qing Tao
2021-05-21 16:38:20 -07:00
committed by GitHub
parent 6e13d384a1
commit d20f3d8bd4
@@ -727,7 +727,7 @@ namespace AZ
ImGui::BeginTooltip();
ImGui::Text("Name: %s", passEntry->m_name.GetCStr());
ImGui::Text("Path: %s", passEntry->m_path.GetCStr());
ImGui::Text("Duration in ticks: %" PRIu64, passEntry->m_timestampResult.GetDurationInTicks());
ImGui::Text("Duration in ticks: %llu", static_cast<AZ::u64>(passEntry->m_timestampResult.GetDurationInTicks()));
ImGui::Text("Duration in microsecond: %.3f us", passEntry->m_timestampResult.GetDurationInNanoseconds()/1000.f);
ImGui::EndTooltip();
}