From 52369be7aef7930bfd5cfdee6b7ffdcbca73a1c8 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Thu, 16 Apr 2026 22:15:37 +0200 Subject: [PATCH] el logo nou de la intro es tornava a descentrar --- source/scenes/intro_sprites_scene.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/scenes/intro_sprites_scene.cpp b/source/scenes/intro_sprites_scene.cpp index 78a340b..442d762 100644 --- a/source/scenes/intro_sprites_scene.cpp +++ b/source/scenes/intro_sprites_scene.cpp @@ -54,7 +54,8 @@ namespace { // nou) amb arxius diferents però mateix layout de sprites. void drawWordmark(JD8_Surface gfx) { if (Options::game.use_new_logo) { - JD8_Blit(60, 78, gfx, 60, 158, 188, 28); + // Centrat: (320 − 188) / 2 = 66 (IntroNewLogoScene usa la mateixa x). + JD8_Blit(66, 78, gfx, 60, 158, 188, 28); } else { JD8_Blit(43, 78, gfx, 43, 155, 231, 45); }