- Colors del text dels menus canviats

This commit is contained in:
2024-07-09 19:32:37 +02:00
parent c37ca60235
commit 0299ec4fd9
4 changed files with 29 additions and 29 deletions

View File

@@ -37,7 +37,7 @@ namespace modules
draw::cls(2);
draw::color(1);
draw::print2("CONFIGURAR AUDIO", 13, 3, YELLOW, FONT_ZOOM_VERTICAL);
draw::print2("CONFIGURAR AUDIO", 13, 3, TEAL, FONT_ZOOM_VERTICAL);
const char *musica_msg = config::isMusicEnabled() ? "MUSICA: SI" : "MUSICA: NO";
const int soundmode=config::getSoundMode();
@@ -50,8 +50,8 @@ namespace modules
draw::print2(musica_msg, 18, pos, YELLOW, FONT_ZOOM_VERTICAL);
pos+=3;
} else {
draw::print2("de", 13, pos, TEAL, FONT_ZOOM_NONE);
draw::print2(musica_msg, 18, pos, TEAL, FONT_ZOOM_NONE);
draw::print2("de", 13, pos, GREEN, FONT_ZOOM_NONE);
draw::print2(musica_msg, 18, pos, GREEN, FONT_ZOOM_NONE);
pos+=2;
}
@@ -60,15 +60,15 @@ namespace modules
draw::print2(so_msg, 18, pos, YELLOW, FONT_ZOOM_VERTICAL);
pos+=3;
} else {
draw::print2("de", 13, pos, TEAL, FONT_ZOOM_NONE);
draw::print2(so_msg, 18, pos, TEAL, FONT_ZOOM_NONE);
draw::print2("de", 13, pos, GREEN, FONT_ZOOM_NONE);
draw::print2(so_msg, 18, pos, GREEN, FONT_ZOOM_NONE);
pos+=2;
}
if (selected_option==MENU_AUDIO_TORNAR) {
draw::print2("fg TORNAR", 13, pos, YELLOW, FONT_ZOOM_VERTICAL);
} else {
draw::print2("de TORNAR", 13, pos, TEAL, FONT_ZOOM_NONE);
draw::print2("de TORNAR", 13, pos, GREEN, FONT_ZOOM_NONE);
}
draw::print2("(C) JAILDOCTOR 2024", 11, 28, TEAL, FONT_ZOOM_NONE);