Skip to content
Snippets Groups Projects
Commit becba594 authored by Joseph Walton-Rivers's avatar Joseph Walton-Rivers
Browse files

don't use same variable for both views

parent 2f194e47
No related branches found
No related tags found
No related merge requests found
......@@ -198,6 +198,7 @@ int main(int argc, char* argv[]) {
fggl::gfx::Input& input = fggl::gfx::Input::instance();
bool joystickWindow = true;
bool gamepadWindow = true;
float time = 0.0f;
float dt = 16.0f;
......@@ -263,7 +264,7 @@ int main(int argc, char* argv[]) {
ImGui::End();
// imgui gamepad debug
ImGui::Begin("GamePad", &joystickWindow);
ImGui::Begin("GamePad", &gamepadWindow);
for ( int i=0; i<16; i++ ) {
std::string title = "GamePad " + std::to_string(i);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment