We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d29347 commit afe4117Copy full SHA for afe4117
src/Editor/Editor.cpp
@@ -680,7 +680,7 @@ void Editor::renderEditor() {
680
}
681
bool isSelected = false;
682
auto allMaterials = world->assetManager->getMaterials();
683
- ImGui::Text("Total material count is %llu", allMaterials.size());
+ ImGui::Text("Total material count is %lu", allMaterials.size());
684
if (ImGui::BeginListBox("Materials")) {
685
for (auto it = allMaterials.begin(); it != allMaterials.end(); ++it) {
686
isSelected = selectedHash == it->first;
0 commit comments