Skip to content

Commit

Permalink
Do not start in how to play screen
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkwouter committed Nov 25, 2024
1 parent a0b16c4 commit 3aef12f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StateManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include "states/State.hpp"

StateManager::StateManager(SDL_Renderer * renderer, FontManager * fonts, SoundManager * sounds, OptionManager * options, SDL_Window * window) : renderer(renderer), fonts(fonts), sounds(sounds), options(options), window(window) {
this->state = new HowToControlsState(renderer, fonts, sounds, options);
this->state = new MenuState(renderer, fonts, sounds, options);
}

StateManager::~StateManager() {
Expand Down

0 comments on commit 3aef12f

Please sign in to comment.