VGM: Add rainbow option to settings menu

This commit is contained in:
Willy-JL
2024-03-09 23:24:04 +00:00
parent a5ae1397d9
commit 1274bd84ac
2 changed files with 2 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ void momentum_app_scene_misc_vgm_var_item_list_callback(void* context, uint32_t
const char* const colors_names[VgmColorModeCount] = { const char* const colors_names[VgmColorModeCount] = {
"Default", "Default",
"Custom", "Custom",
"Rainbow",
"RGB Backlight", "RGB Backlight",
}; };
static void momentum_app_scene_misc_vgm_colors_changed(VariableItem* item) { static void momentum_app_scene_misc_vgm_colors_changed(VariableItem* item) {

View File

@@ -47,6 +47,7 @@ typedef enum {
typedef enum { typedef enum {
VgmColorModeDefault, VgmColorModeDefault,
VgmColorModeCustom, VgmColorModeCustom,
VgmColorModeRainbow,
VgmColorModeRgbBacklight, VgmColorModeRgbBacklight,
VgmColorModeCount, VgmColorModeCount,
} VgmColorMode; } VgmColorMode;