diff --git a/data/loading/loading_screen_bn.gif b/data/loading/loading_screen_bn.gif index cfa1c58..330640b 100644 Binary files a/data/loading/loading_screen_bn.gif and b/data/loading/loading_screen_bn.gif differ diff --git a/source/game/scenes/loading_screen.cpp b/source/game/scenes/loading_screen.cpp index 35e557f..a49f4bc 100644 --- a/source/game/scenes/loading_screen.cpp +++ b/source/game/scenes/loading_screen.cpp @@ -208,7 +208,7 @@ void LoadingScreen::updateMonoLoad(float delta_time) { auto previous_renderer = Screen::get()->getRendererSurface(); Screen::get()->setRendererSurface(screen_surface_); - mono_loading_screen_sprite_->render(1, stringToColor("black")); + mono_loading_screen_sprite_->render(); Screen::get()->setRendererSurface(previous_renderer); } @@ -426,7 +426,7 @@ void LoadingScreen::renderBorder() { void LoadingScreen::printProgramName() { auto previous_renderer = Screen::get()->getRendererSurface(); Screen::get()->setRendererSurface(screen_surface_); - program_sprite_->render(1, stringToColor("black")); + program_sprite_->render(); Screen::get()->setRendererSurface(previous_renderer); } diff --git a/source/game/scenes/loading_screen.hpp b/source/game/scenes/loading_screen.hpp index f730675..785d895 100644 --- a/source/game/scenes/loading_screen.hpp +++ b/source/game/scenes/loading_screen.hpp @@ -59,7 +59,7 @@ class LoadingScreen { // --- Constantes de tiempo (en segundos) --- static constexpr float SILENT1_DURATION = 2.0F; // Pausa inicial static constexpr float HEADER1_DURATION = 4.0F; // Cabecera - static constexpr float DATA1_DURATION = 0.3F; // Datos + static constexpr float DATA1_DURATION = 0.1F; // Datos static constexpr float SILENT2_DURATION = 3.0F; // Segunda pausa static constexpr float HEADER2_DURATION = 2.0F; // Cabecera pantalla static constexpr float LOADING_MONO_DURATION = 16.0F; // Duración total de la carga monocromática