From 2ebb285a2763f22d70563bbbc5ec26ccbf4d1dc8 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sun, 2 Mar 2025 16:51:08 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20el=20brillet=20del=20cor=20dels=20credit?= =?UTF-8?q?s=20pillava=20mal=20la=20posici=C3=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/credits.cpp | 2 +- source/options.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/credits.cpp b/source/credits.cpp index df573c0..44b5a75 100644 --- a/source/credits.cpp +++ b/source/credits.cpp @@ -23,7 +23,7 @@ Credits::Credits() // Inicializa variables options.section.section = Section::CREDITS; options.section.subsection = Subsection::NONE; - shining_sprite_->setPosition({194, 174, 8, 8}); + shining_sprite_->setPos({194, 174, 8, 8}); // Cambia el color del borde Screen::get()->setBorderColor(stringToColor(options.video.palette, "black")); diff --git a/source/options.cpp b/source/options.cpp index 665ebf4..78a852a 100644 --- a/source/options.cpp +++ b/source/options.cpp @@ -21,7 +21,7 @@ void initOptions() options = Options(); #ifdef DEBUG - options.section = SectionState(Section::DEMO, Subsection::NONE); + options.section = SectionState(Section::CREDITS, Subsection::NONE); options.console = true; #else options.section = SectionState(Section::LOGO, Subsection::LOGO_TO_INTRO);