From d24d67683067af02a46326a629c546d2bc3d33db Mon Sep 17 00:00:00 2001 From: Github Actions Date: Wed, 27 Sep 2023 16:56:30 +0000 Subject: [PATCH 1/3] FORMAT-AUTO: automatic format on pull request #28 --- src/Client/SceneManager.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client/SceneManager.hpp b/src/Client/SceneManager.hpp index 13f827cd..64b4f290 100644 --- a/src/Client/SceneManager.hpp +++ b/src/Client/SceneManager.hpp @@ -31,7 +31,7 @@ class SceneManager { bool _stop; const std::array, 2> _scenes = { std::vector {EVENTS, GAME, DISPLAY}, - std::vector {EVENTS, DISPLAY} + std::vector {EVENTS, DISPLAY } }; // NOLINTBEGIN(cppcoreguidelines-avoid-non-const-global-variables) From 126d3ff31877e8f1de6615ea6a10c197c866c3ea Mon Sep 17 00:00:00 2001 From: guillaume abel <91884836+guillaumeAbel@users.noreply.github.com> Date: Wed, 27 Sep 2023 19:03:45 +0200 Subject: [PATCH 2/3] Update src/Client/SceneManager.cpp Co-authored-by: Xavier Mitault --- src/Client/SceneManager.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Client/SceneManager.cpp b/src/Client/SceneManager.cpp index b811278d..20498090 100644 --- a/src/Client/SceneManager.cpp +++ b/src/Client/SceneManager.cpp @@ -38,8 +38,7 @@ static void initRaylib() InitWindow( screenWidth, screenHeight, - "raylib [textures] examples - texture source and destination " - "rectangles"); + "R-Bus"); SetTargetFPS(fps); InitAudioDevice(); } From 941a096f65ac52bfb27c7ad23c2ad135803f7f16 Mon Sep 17 00:00:00 2001 From: Github Actions Date: Wed, 27 Sep 2023 17:04:28 +0000 Subject: [PATCH 3/3] FORMAT-AUTO: automatic format on pull request #28 --- src/Client/SceneManager.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Client/SceneManager.cpp b/src/Client/SceneManager.cpp index 20498090..c4c3d036 100644 --- a/src/Client/SceneManager.cpp +++ b/src/Client/SceneManager.cpp @@ -35,10 +35,7 @@ SceneManager::SceneManager() : _currentScene(Scene::MAIN_GAME), _stop(false) static void initRaylib() { - InitWindow( - screenWidth, - screenHeight, - "R-Bus"); + InitWindow(screenWidth, screenHeight, "R-Bus"); SetTargetFPS(fps); InitAudioDevice(); }