activa -Wextra -Wpedantic i neteja warnings
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user