From b72aceb55f2d7ba55bcd01e5dfbe345c321da1c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20MARQUET?= Date: Thu, 19 Dec 2024 13:46:23 +0100 Subject: [PATCH] Fix player speed --- Game/launchGameSolo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Game/launchGameSolo.cpp b/Game/launchGameSolo.cpp index b9eaa17..087a714 100644 --- a/Game/launchGameSolo.cpp +++ b/Game/launchGameSolo.cpp @@ -56,7 +56,7 @@ int pas_la_fontion_main_enfin_ce_nest_pas_la_fontion_principale_du_programme_mai //std::thread quit_thread = createThread("Quit thread", handleQuitThread); // Offline - players.emplace_back(Player(windowWidth / 2, windowHeight / 2, 5, renderer, 0)); + players.emplace_back(Player(windowWidth / 2, windowHeight / 2, 3, renderer, 0)); std::thread player_thread = createThread("Player thread", playerMovementThread, std::ref(players[0]));