From 28e3e1ee0af21d872aceba102f34bcaa83dfd7f5 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Thu, 23 Oct 2025 17:46:06 +0200 Subject: [PATCH] style: si ja havies posat nom, el carrusel apareix directament en el caracter d'acabar --- source/enter_name.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/enter_name.cpp b/source/enter_name.cpp index 752ab20..f2c0741 100644 --- a/source/enter_name.cpp +++ b/source/enter_name.cpp @@ -14,7 +14,7 @@ void EnterName::init(const std::string& name) { selected_index_ = 0; // Si el nombre está completo, cambia el caracter seleccionado a el caracter de finalizar - if (nameIsFull()) { + if (!nameIsEmpty()) { forceEndCharSelected(); } }