Skip to content

Commit

Permalink
Fix VGM color assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Mar 8, 2024
1 parent db979f4 commit c977bef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/momentum/settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ MomentumSettings momentum_settings = {
.uart_nmea_channel = FuriHalSerialIdUsart, // pin 13,14
.file_naming_prefix_after = false, // Before
.vgm_color_mode = VgmColorModeDefault, // Default
.vgm_color_fg.value = 0xFC00, // Default Orange
.vgm_color_bg.value = 0x0000, // Default Black
.vgm_color_fg.value = 0x0000, // Default Black
.vgm_color_bg.value = 0xFC00, // Default Orange
};

typedef enum {
Expand Down

0 comments on commit c977bef

Please sign in to comment.