This commit is contained in:
2026-04-16 16:37:38 +02:00
parent 083a57dab5
commit 0cd09f6d28
21 changed files with 57 additions and 57 deletions

View File

@@ -9,8 +9,8 @@
namespace scenes {
void MenuScene::onEnter() {
fondo_ = SurfaceHandle("menu.gif");
gfx_ = SurfaceHandle("menu2.gif");
fondo_ = SurfaceHandle("gfx/menu.gif");
gfx_ = SurfaceHandle("gfx/menu2.gif");
// Pintat inicial (congelat durant el fade-in de paleta). El loop
// d'animació repintarà tot des de zero en el primer tick de Showing.
@@ -19,7 +19,7 @@ void MenuScene::onEnter() {
JD8_BlitCK(130, 100, gfx_, 0, 0, 80, 74, 255); // camell (frame 0)
JD8_BlitCK(0, 150, gfx_, 0, 150, 320, 50, 255); // base "jdes"
JD8_Palette pal = JD8_LoadPalette("menu2.gif");
JD8_Palette pal = JD8_LoadPalette("gfx/menu2.gif");
fade_.startFadeTo(pal);
std::free(pal);