activa -Wextra -Wpedantic i neteja warnings

This commit is contained in:
2026-05-18 21:53:32 +02:00
parent 78682b7071
commit e47bc5188a
8 changed files with 45 additions and 13 deletions
+2 -2
View File
@@ -181,7 +181,7 @@ void LoadingScreen::updateState(float delta_time) {
}
// Gestiona la carga monocromática (time-based simplificado)
void LoadingScreen::updateMonoLoad(float delta_time) {
void LoadingScreen::updateMonoLoad(float /*delta_time*/) {
// Calcular progreso lineal (0.0 - 1.0)
float progress = state_time_ / LOADING_MONO_DURATION;
progress = std::min(progress, 1.0F);
@@ -234,7 +234,7 @@ void LoadingScreen::updateMonoLoad(float delta_time) {
}
// Gestiona la carga en color
void LoadingScreen::updateColorLoad(float delta_time) {
void LoadingScreen::updateColorLoad(float /*delta_time*/) {
// Calcular progreso lineal (0.0 - 1.0)
float progress = state_time_ / LOADING_COLOR_DURATION;
progress = std::min(progress, 1.0F);