From 1274bd84acedee371511c8c445d9ba9a69d6f6a0 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Sat, 9 Mar 2024 23:24:04 +0000 Subject: [PATCH] VGM: Add rainbow option to settings menu --- .../main/momentum_app/scenes/momentum_app_scene_misc_vgm.c | 1 + lib/momentum/momentum.h | 1 + 2 files changed, 2 insertions(+) diff --git a/applications/main/momentum_app/scenes/momentum_app_scene_misc_vgm.c b/applications/main/momentum_app/scenes/momentum_app_scene_misc_vgm.c index 3091da019..4c6d9a65a 100644 --- a/applications/main/momentum_app/scenes/momentum_app_scene_misc_vgm.c +++ b/applications/main/momentum_app/scenes/momentum_app_scene_misc_vgm.c @@ -14,6 +14,7 @@ void momentum_app_scene_misc_vgm_var_item_list_callback(void* context, uint32_t const char* const colors_names[VgmColorModeCount] = { "Default", "Custom", + "Rainbow", "RGB Backlight", }; static void momentum_app_scene_misc_vgm_colors_changed(VariableItem* item) { diff --git a/lib/momentum/momentum.h b/lib/momentum/momentum.h index 9b3974fd8..e2555c99c 100644 --- a/lib/momentum/momentum.h +++ b/lib/momentum/momentum.h @@ -47,6 +47,7 @@ typedef enum { typedef enum { VgmColorModeDefault, VgmColorModeCustom, + VgmColorModeRainbow, VgmColorModeRgbBacklight, VgmColorModeCount, } VgmColorMode;