Canviats defines per constexpr

This commit is contained in:
2025-02-21 12:27:03 +01:00
parent 788aec0dab
commit 134b679a75
17 changed files with 158 additions and 162 deletions

View File

@@ -23,13 +23,13 @@ struct JA_Music_t;
struct JA_Sound_t;
// Textos
#define TEXT_COPYRIGHT "@2020,2023 JailDesigner (v2.3.1)"
constexpr const char* TEXT_COPYRIGHT = "@2020,2023 JailDesigner (v2.3.1)";
// Contadores
#define TITLE_COUNTER 800
constexpr int TITLE_COUNTER = 800;
// Cantidad de eventos de la pantalla de titulo
#define TITLE_TOTAL_EVENTS 2
// Cantidad de eventos de la pantalla de título
constexpr int TITLE_TOTAL_EVENTS = 2;
class Title
{