From 62f65cbd5ab0579a0926836b72979f2b06252971 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Wed, 27 Aug 2025 10:19:30 +0200 Subject: [PATCH] =?UTF-8?q?warning:=20balloon=5Fmanager.cpp=20varios=20ord?= =?UTF-8?q?res=20de=20inicialitzaci=C3=B3=20mal?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/balloon_manager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/balloon_manager.cpp b/source/balloon_manager.cpp index dbfec87..1f71262 100644 --- a/source/balloon_manager.cpp +++ b/source/balloon_manager.cpp @@ -110,9 +110,9 @@ void BalloonManager::deployRandomFormation(int stage) { Balloon::Config config = { .x = balloon.x, .y = balloon.y, - .vel_x = balloon.vel_x, .type = balloon.type, .size = balloon.size, + .vel_x = balloon.vel_x, .speed = balloon_speed_, .creation_counter = static_cast(creation_time_enabled_ ? balloon.creation_counter : 0)}; createBalloon(config); @@ -131,9 +131,9 @@ void BalloonManager::deployFormation(int formation_id) { Balloon::Config config = { .x = balloon.x, .y = balloon.y, - .vel_x = balloon.vel_x, .type = balloon.type, .size = balloon.size, + .vel_x = balloon.vel_x, .speed = balloon_speed_, .creation_counter = balloon.creation_counter}; createBalloon(config); @@ -147,9 +147,9 @@ void BalloonManager::deployFormation(int formation_id, float y) { Balloon::Config config = { .x = balloon.x, .y = y, - .vel_x = balloon.vel_x, .type = balloon.type, .size = balloon.size, + .vel_x = balloon.vel_x, .speed = balloon_speed_, .creation_counter = balloon.creation_counter}; createBalloon(config);