From 972d23f17806846afafbdaad97562ac1ec7f225a Mon Sep 17 00:00:00 2001 From: Sergio Date: Fri, 21 Nov 2025 10:48:15 +0100 Subject: [PATCH] claude arreglant el ending --- source/game/scenes/ending.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/game/scenes/ending.cpp b/source/game/scenes/ending.cpp index f65317e..5b5d8dc 100644 --- a/source/game/scenes/ending.cpp +++ b/source/game/scenes/ending.cpp @@ -457,7 +457,7 @@ void Ending::updateSpriteCovers() { } // Fase 2: Revelar contenido else { - sprite_texts_.at(ti.index).cover_clip_desp = 0; + sprite_texts_.at(ti.index).cover_clip_desp = 8; const float CONTENT_PIXELS = PIXELS_REVEALED - 8.0F; sprite_texts_.at(ti.index).cover_clip_height = std::max(0, static_cast(INITIAL_HEIGHT - CONTENT_PIXELS)); sprite_texts_.at(ti.index).cover_sprite->setY(Y_INITIAL + static_cast(CONTENT_PIXELS)); @@ -484,7 +484,7 @@ void Ending::updateSpriteCovers() { } // Fase 2: Revelar contenido else { - sprite_pics_.at(current_scene_).cover_clip_desp = 0; + sprite_pics_.at(current_scene_).cover_clip_desp = 8; const float CONTENT_PIXELS = PIXELS_REVEALED - 8.0F; sprite_pics_.at(current_scene_).cover_clip_height = std::max(0, static_cast(INITIAL_HEIGHT - CONTENT_PIXELS)); sprite_pics_.at(current_scene_).cover_sprite->setY(Y_INITIAL + static_cast(CONTENT_PIXELS));