Compare commits

..

1 Commits

Author SHA1 Message Date
David
e8d2251909 modified: ScuffedMinecraft/src/Application.cpp 2024-12-21 17:53:32 -06:00

View File

@ -518,11 +518,11 @@ int main(int argc, char *argv[])
Planet::planet->ClearChunkQueue(); Planet::planet->ClearChunkQueue();
ImGui::Checkbox("Use absolute Y axis for camera vertical movement", &camera.absoluteVerticalMovement); ImGui::Checkbox("Use absolute Y axis for camera vertical movement", &camera.absoluteVerticalMovement);
ImGui::End(); ImGui::End();
ImGui::Render();
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
} }
ImGui::Render();
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
// Check and call events and swap buffers // Check and call events and swap buffers
glfwSwapBuffers(window); glfwSwapBuffers(window);
glfwPollEvents(); glfwPollEvents();