A fix that locks all dependencies at a specific version.

This commit is contained in:
Zed A. Shaw 2024-10-16 16:48:25 -04:00
parent 5e432d7e88
commit 92e872f922
17 changed files with 159 additions and 54 deletions

View file

@ -12,12 +12,7 @@
#include <SFML/Window/Event.hpp>
void ImGui_setup(sf::RenderWindow &window) {
int res = ImGui::SFML::Init(window);
if(res == 1) {
fmt::print("ImGui returned result {}\n", res);
} else {
fmt::print("ImGui returned an error code={}\n", res);
}
ImGui::SFML::Init(window);
}
void ImGui_update(sf::RenderWindow &window, sf::Clock &deltaClock, sf::Time &tick) {