Fixes clang cases

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-09-03 13:27:31 -07:00
parent 6773af91bc
commit ec8e6bcadf
19 changed files with 96 additions and 136 deletions
@@ -446,13 +446,13 @@ namespace Audio
}
// Format: "relative/path/filename.ext (230 KiB) [2]"
AZStd::string displayString = AZStd::string::format("%s (%zu %s) [%zu]",
auxGeom.Draw2dLabel(positionX, positionY, entryDrawSize, color, false,
"%s (%zu %s) [%zu]",
audioFileEntry->m_filePath.c_str(),
fileSize,
kiloBytes ? "KiB" : "Bytes",
audioFileEntry->m_useCount);
auxGeom.Draw2dLabel(positionX, positionY, entryDrawSize, color, false, displayString.c_str());
color[3] = originalAlpha;
positionY += entryStepSize;
}