From ed21a47f92a4f4e839a8196c5b3e0f3d247894f2 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sat, 28 Mar 2026 13:53:07 +0100 Subject: [PATCH] augmentat el limit de caracters en la consola --- source/game/ui/console.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/game/ui/console.hpp b/source/game/ui/console.hpp index 39e9d5f..843eff8 100644 --- a/source/game/ui/console.hpp +++ b/source/game/ui/console.hpp @@ -45,7 +45,7 @@ class Console { // Constantes de consola static constexpr std::string_view CONSOLE_NAME = "JDD Console"; static constexpr std::string_view CONSOLE_VERSION = "v1.0"; - static constexpr int MAX_LINE_CHARS = 28; + static constexpr int MAX_LINE_CHARS = 30; static constexpr int MAX_HISTORY_SIZE = 20; static constexpr float CURSOR_ON_TIME = 0.5F; static constexpr float CURSOR_OFF_TIME = 0.3F;