fix uninitialized variables

This commit is contained in:
Sven Balzer 2025-08-26 20:38:35 +02:00 committed by Ammerhai
parent fc39fc4277
commit 32ad42b162

View File

@ -200,10 +200,10 @@ void per_frame(){
//Legende //Legende
ImGui::TableSetColumnIndex(1); ImGui::TableSetColumnIndex(1);
ImVec4 col; ImVec4 col = {};
ImGui::ColorButton("colortest", col); ImGui::ColorButton("colortest", col);
ImGui::SameLine(0, 0); ImGui::SameLine(0, 0);
char buf[64]; char buf[64] = {};
ImGui::InputText("", buf, IM_ARRAYSIZE(buf)); ImGui::InputText("", buf, IM_ARRAYSIZE(buf));
//TODO //TODO