Skip to content

Commit afe4117

Browse files
committed
Fix warning about wrong type on string formatting
1 parent 9d29347 commit afe4117

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Editor/Editor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ void Editor::renderEditor() {
680680
}
681681
bool isSelected = false;
682682
auto allMaterials = world->assetManager->getMaterials();
683-
ImGui::Text("Total material count is %llu", allMaterials.size());
683+
ImGui::Text("Total material count is %lu", allMaterials.size());
684684
if (ImGui::BeginListBox("Materials")) {
685685
for (auto it = allMaterials.begin(); it != allMaterials.end(); ++it) {
686686
isSelected = selectedHash == it->first;

0 commit comments

Comments
 (0)