From 20a7674e99d7ce74f39238eda786ceca84782927 Mon Sep 17 00:00:00 2001 From: m Date: Sat, 4 Jun 2022 18:51:16 -0500 Subject: [PATCH] fix compile --- src/client/component/gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/component/gui.cpp b/src/client/component/gui.cpp index abb615ad..5a955efb 100644 --- a/src/client/component/gui.cpp +++ b/src/client/component/gui.cpp @@ -185,7 +185,7 @@ namespace gui ImGui::Begin("hello world!", nullptr); static int value = 0; - const auto technique = ImGui::SliderInt("lighting technique", &value, 0, 25); + ImGui::SliderInt("lighting technique", &value, 0, 25); const auto should_apply = ImGui::Button("apply", ImVec2(125, 125)); if (should_apply)