Skip to content

Commit

Permalink
Merge branch 'feature/RB-40-scene-manager-class' of https://github.co…
Browse files Browse the repository at this point in the history
…m/X-R-G-B/R-Bus into feature/RB-40-scene-manager-class
  • Loading branch information
guillaumeAbel committed Sep 27, 2023
2 parents 4ee1293 + 941a096 commit e6195c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions src/Client/SceneManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@ SceneManager SceneManager::_instance = SceneManager();

static void initRaylib()
{
InitWindow(
screenWidth,
screenHeight,
"raylib [textures] examples - texture source and destination "
"rectangles");
InitWindow(screenWidth, screenHeight, "R-Bus");
SetTargetFPS(fps);
InitAudioDevice();
}
Expand Down
2 changes: 1 addition & 1 deletion src/Client/SceneManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class SceneManager {
bool _stop;
const std::array<std::vector<SystemManagers>, 2> _scenes = {
std::vector<SystemManagers> {EVENTS, GAME, DISPLAY},
std::vector<SystemManagers> {EVENTS, DISPLAY}
std::vector<SystemManagers> {EVENTS, DISPLAY }
};

// NOLINTBEGIN(cppcoreguidelines-avoid-non-const-global-variables)
Expand Down

0 comments on commit e6195c4

Please sign in to comment.