progressbar: Fix indentation

This commit is contained in:
Joel16 2022-08-01 12:02:48 -04:00
parent d8b1be755c
commit 663ba14b19

View File

@ -22,12 +22,12 @@ namespace Popups {
ImGui::ProgressBar(offset/size, ImVec2(0.0f, 0.0f));
}
Popups::ExitPopup();
Popups::ExitPopup();
ImGui::Render();
glViewport(0, 0, static_cast<int>(ImGui::GetIO().DisplaySize.x), static_cast<int>(ImGui::GetIO().DisplaySize.y));
glClearColor(0.00f, 0.00f, 0.00f, 1.00f);
glClear(GL_COLOR_BUFFER_BIT);
glViewport(0, 0, static_cast<int>(ImGui::GetIO().DisplaySize.x), static_cast<int>(ImGui::GetIO().DisplaySize.y));
glClearColor(0.00f, 0.00f, 0.00f, 1.00f);
glClear(GL_COLOR_BUFFER_BIT);
ImGui_ImplSwitch_RenderDrawData(ImGui::GetDrawData());
GUI::SwapBuffers();
}