Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions docs/wiki/config_xml.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ LittleGPTracker uses 6 colours to do all the drawing. If you want, you can redef
- `MUTECOLOR`: mute indicator color
- `SONGVIEW_FE`: color of the chain "FE" in song screen
- `SONGVIEW_00`: color of the chain "00" in song screen
- `BLANKSPACE`: color of the blanks in song and phrase screens
- `ROWCOLOR1`: row count color 1
- `ROWCOLOR2`: row count color 2
- `ALTROWNUMBER`: How many rows for each rowcolor
Expand All @@ -83,6 +84,7 @@ All colors are defined by a set of hexadecimal triplet for RGB. Here's an exampl
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen-->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen-->
<BLANKSPACE value = "FFFFFF" /> <!-- Color of the blanks in song and phrase screens -->
<CURSORCOLOR value = "FF00DD" /> <!--Cursor color-->
<PLAYCOLOR value = "FF00DD" /> <!--Cursor color-->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
Expand Down Expand Up @@ -154,7 +156,7 @@ Set the value of FONTTYPE in the config file to '0', '1', or '2' to apply the co
```

### Custom Fonts:
To use a custom font, set the value of the FONTTYPE key to 'CUSTOM'
To use a custom font, set the value of the FONTTYPE key to 'CUSTOM'

```
<CONFIG>
Expand All @@ -163,12 +165,12 @@ To use a custom font, set the value of the FONTTYPE key to 'CUSTOM'
```
and place the custom_font.xml file in the same directory as the application.

The custom_font.xml file is generated by converting a BMP file containing font information using a
The custom_font.xml file is generated by converting a BMP file containing font information using a
[dedicated web tool](https://koisignal.com/toolsforlittlegptracker.html "BMP to XML")
.

The source BMP file can be obtained from the link within the web tool
or from
The source BMP file can be obtained from the link within the web tool
or from
[here](https://raw.githubusercontent.com/djdiskmachine/LittleGPTracker/master/sources/Resources/original.bmp "original.bmp")

.
Expand Down
32 changes: 17 additions & 15 deletions projects/resources/CHIP/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<KEY_LSHOULDER value="key:0:1" />
<KEY_RSHOULDER value="key:0:9" />
<KEY_START value="space" />

<FULLSCREEN value='YES'/>
<DUMPEVENT value='YES'/>
<!-- use if you want to put your tracks somewhere special
Expand All @@ -24,18 +24,20 @@
<RENDER value="FILE" />
-->
<!-- Default colors below -->
<BACKGROUND value = "505444" />
<FOREGROUND value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<BORDER value = "FF00DD" /> <!--Dialog Border-->
<HICOLOR1 value = "F41B38" /> <!-- Highlight color 1 -->
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen-->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen-->
<CURSORCOLOR value = "FF00DD" /> <!--Cursor color-->
<PLAYCOLOR value = "FF00DD" /> <!--Cursor color-->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<ROWCOLOR1 value = "BA28F9" /> <!--Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!--Row count color 2-->
<ALTROWNUMBER value = "4"/> <!--How many rows of each ROWCOLOR-->
<FONTTYPE value = '0' /> <!-- '0':original '1':digital '2':monster 'CUSTOM': load custom_font.xml-->
<BACKGROUND value = "505444" />
<FOREGROUND value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<BORDER value = "FF00DD" /> <!-- Dialog Border -->
<HICOLOR1 value = "F41B38" /> <!-- Highlight color 1 -->
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen -->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen -->
<BLANKSPACE value = "853B6F" /> <!-- Color of the blanks in song and chain screens -->
<CURSORCOLOR value = "FF00DD" /> <!-- Cursor color -->
<PLAYCOLOR value = "FF00DD" /> <!-- Cursor color -->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<ROWCOLOR1 value = "BA28F9" /> <!-- Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!-- Row count color 2 -->
<ALTROWNUMBER value = "4" /> <!-- How many rows of each ROWCOLOR -->
<FONTTYPE value = "0" /> <!-- "0": original, "1" :digital, "2": monster, "CUSTOM": load custom_font.xml -->

</CONFIG>
29 changes: 15 additions & 14 deletions projects/resources/DEB/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,20 @@
<KEY_START value="key:0:return" />
-->
<!-- Default colors below -->
<BACKGROUND value = "505444" />
<FOREGROUND value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<BORDER value = "FF00DD" /> <!--Dialog Border-->
<HICOLOR1 value = "F41B38" /> <!-- Highlight color 1 -->
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen-->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen-->
<CURSORCOLOR value = "FF00DD" /> <!--Cursor color-->
<PLAYCOLOR value = "FF00DD" /> <!--Cursor color-->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<ROWCOLOR1 value = "BA28F9" /> <!--Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!--Row count color 2-->
<ALTROWNUMBER value = "4"/> <!--How many rows of each ROWCOLOR-->
<FONTTYPE value = '0' /> <!-- '0':original '1':digital '2':monster 'CUSTOM': load custom_font.xml-->
<BACKGROUND value = "505444" />
<FOREGROUND value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<BORDER value = "FF00DD" /> <!-- Dialog Border -->
<HICOLOR1 value = "F41B38" /> <!-- Highlight color 1 -->
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen -->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen -->
<BLANKSPACE value = "853B6F" /> <!-- Color of the blanks in song and chain screens -->
<CURSORCOLOR value = "FF00DD" /> <!-- Cursor color -->
<PLAYCOLOR value = "FF00DD" /> <!-- Cursor color -->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<ROWCOLOR1 value = "BA28F9" /> <!-- Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!-- Row count color 2 -->
<ALTROWNUMBER value = "4" /> <!-- How many rows of each ROWCOLOR -->
<FONTTYPE value = "0" /> <!-- "0": original, "1" :digital, "2": monster, "CUSTOM": load custom_font.xml -->

</CONFIG>
29 changes: 15 additions & 14 deletions projects/resources/MACOS/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,20 @@
<KEY_START value="space" />

<!-- Default colors below -->
<BACKGROUND value = "505444" />
<FOREGROUND value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<BORDER value = "FF00DD" /> <!--Dialog Border-->
<HICOLOR1 value = "F41B38" /> <!-- Highlight color 1 -->
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen-->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen-->
<CURSORCOLOR value = "FF00DD" /> <!--Cursor color-->
<PLAYCOLOR value = "FF00DD" /> <!--Cursor color-->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<ROWCOLOR1 value = "BA28F9" /> <!--Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!--Row count color 2-->
<ALTROWNUMBER value = "4"/> <!--How many rows of each ROWCOLOR-->
<FONTTYPE value = '0' /> <!-- '0':original '1':digital '2':monster 'CUSTOM': load custom_font.xml-->
<BACKGROUND value = "505444" />
<FOREGROUND value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<BORDER value = "FF00DD" /> <!-- Dialog Border -->
<HICOLOR1 value = "F41B38" /> <!-- Highlight color 1 -->
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen -->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen -->
<BLANKSPACE value = "853B6F" /> <!-- Color of the blanks in song and chain screens -->
<CURSORCOLOR value = "FF00DD" /> <!-- Cursor color -->
<PLAYCOLOR value = "FF00DD" /> <!-- Cursor color -->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<ROWCOLOR1 value = "BA28F9" /> <!-- Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!-- Row count color 2 -->
<ALTROWNUMBER value = "4" /> <!-- How many rows of each ROWCOLOR -->
<FONTTYPE value = "0" /> <!-- "0": original, "1" :digital, "2": monster, "CUSTOM": load custom_font.xml -->

</CONFIG>
29 changes: 15 additions & 14 deletions projects/resources/MIYOO/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,20 @@ root of your sd card.
-->
<!-- Default colors below -->
<!-- Default colors below -->
<BACKGROUND value = "505444" />
<FOREGROUND value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<BORDER value = "FF00DD" /> <!--Dialog Border-->
<HICOLOR1 value = "F41B38" /> <!-- Highlight color 1 -->
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen-->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen-->
<CURSORCOLOR value = "FF00DD" /> <!--Cursor color-->
<PLAYCOLOR value = "FF00DD" /> <!--Cursor color-->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<ROWCOLOR1 value = "BA28F9" /> <!--Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!--Row count color 2-->
<ALTROWNUMBER value = "4"/> <!--How many rows of each ROWCOLOR-->
<FONTTYPE value = '0' /> <!-- '0':original '1':digital '2':monster 'CUSTOM': load custom_font.xml-->
<BACKGROUND value = "505444" />
<FOREGROUND value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<BORDER value = "FF00DD" /> <!-- Dialog Border -->
<HICOLOR1 value = "F41B38" /> <!-- Highlight color 1 -->
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen -->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen -->
<BLANKSPACE value = "853B6F" /> <!-- Color of the blanks in song and chain screens -->
<CURSORCOLOR value = "FF00DD" /> <!-- Cursor color -->
<PLAYCOLOR value = "FF00DD" /> <!-- Cursor color -->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<ROWCOLOR1 value = "BA28F9" /> <!-- Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!-- Row count color 2 -->
<ALTROWNUMBER value = "4" /> <!-- How many rows of each ROWCOLOR -->
<FONTTYPE value = "0" /> <!-- "0": original, "1" :digital, "2": monster, "CUSTOM": load custom_font.xml -->

</CONFIG>
29 changes: 15 additions & 14 deletions projects/resources/PSP/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,20 @@
<SCREENMULT value="1"/> <!-- Does nothing on PSP -->

<!-- Default colors below -->
<BACKGROUND value = "1D0A1F" /> <!--Background color-->
<FOREGROUND value = "F5EBFF" /> <!--Text color-->
<BORDER value = "FF00DD" /> <!--Dialog border color-->
<HICOLOR1 value = "B750D1" /> <!--Highlight color 1-->
<HICOLOR2 value = "DB33DB" /> <!--Highlight color 2-->
<CURSORCOLOR value = "FF00DD" /> <!--Cursor color-->
<PLAYCOLOR value = "FF00DD" /> <!--Play indicator color-->
<MUTECOLOR value = "F5EBFF" /> <!--Mute indicator color-->
<SONGVIEW_FE value = "A55B8F" /> <!--Alt chain color1-->
<SONGVIEW_00 value = "853B6F" /> <!--Alt chain color2-->
<ROWCOLOR1 value = "BA28F9" /> <!--Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!--Row count color 2-->
<ALTROWNUMBER value = "4"/> <!--How many rows before alternating-->
<FONTTYPE value = '0' /> <!-- '0':original '1':digital '2':monster 'CUSTOM': load custom_font.xml-->
<BACKGROUND value = "505444" />
<FOREGROUND value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<BORDER value = "FF00DD" /> <!-- Dialog Border -->
<HICOLOR1 value = "F41B38" /> <!-- Highlight color 1 -->
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen -->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen -->
<BLANKSPACE value = "853B6F" /> <!-- Color of the blanks in song and chain screens -->
<CURSORCOLOR value = "FF00DD" /> <!-- Cursor color -->
<PLAYCOLOR value = "FF00DD" /> <!-- Cursor color -->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<ROWCOLOR1 value = "BA28F9" /> <!-- Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!-- Row count color 2 -->
<ALTROWNUMBER value = "4" /> <!-- How many rows of each ROWCOLOR -->
<FONTTYPE value = "0" /> <!-- "0": original, "1" :digital, "2": monster, "CUSTOM": load custom_font.xml -->

</CONFIG>
34 changes: 17 additions & 17 deletions projects/resources/X64/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<KEY_B value="key:0:z"/>
<KEY_LSHOULDER value="key:0:a" />
<KEY_RSHOULDER value="key:0:s" />

<KEY_UP value="key:0:up" />
<KEY_DOWN value="key:0:down" />
<KEY_LEFT value="key:0:left" />
<KEY_RIGHT value="key:0:right" />

<KEY_START value="key:0:return" />
-->
<!-- Default colors below -->
<!-- Default colors below -->
<BACKGROUND value = "505444" />
<FOREGROUND value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<BORDER value = "FF00DD" /> <!--Dialog Border-->
<HICOLOR1 value = "F41B38" /> <!-- Highlight color 1 -->
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen-->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen-->
<CURSORCOLOR value = "FF00DD" /> <!--Cursor color-->
<PLAYCOLOR value = "FF00DD" /> <!--Cursor color-->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<ROWCOLOR1 value = "BA28F9" /> <!--Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!--Row count color 2-->
<ALTROWNUMBER value = "4"/> <!--How many rows of each ROWCOLOR-->
<ALTROWNUMBER value = "4"/>
<FONTTYPE value = '0' /> <!-- '0':original '1':digital '2':monster 'CUSTOM': load custom_font.xml-->
<BACKGROUND value = "505444" />
<FOREGROUND value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<BORDER value = "FF00DD" /> <!-- Dialog Border -->
<HICOLOR1 value = "F41B38" /> <!-- Highlight color 1 -->
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen -->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen -->
<BLANKSPACE value = "853B6F" /> <!-- Color of the blanks in song and chain screens -->
<CURSORCOLOR value = "FF00DD" /> <!-- Cursor color -->
<PLAYCOLOR value = "FF00DD" /> <!-- Cursor color -->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<ROWCOLOR1 value = "BA28F9" /> <!-- Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!-- Row count color 2 -->
<ALTROWNUMBER value = "4" /> <!-- How many rows of each ROWCOLOR -->
<FONTTYPE value = "0" /> <!-- "0": original, "1" :digital, "2": monster, "CUSTOM": load custom_font.xml -->

</CONFIG>
28 changes: 15 additions & 13 deletions projects/resources/X86/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,20 @@
<KEY_START value="key:0:return" />
-->
<!-- Default colors below -->
<BACKGROUND value = "1D0A1F"/> <!--Background color-->
<FOREGROUND value = "F5EBFF"/> <!--Text color-->
<BORDER value = "FF00DD"/> <!--Border color-->
<HICOLOR1 value = "B750D1"/> <!--Highlight color 1-->
<HICOLOR2 value = "DB33DB"/> <!--Highlight color 2-->
<CURSORCOLOR value = "FF00DD"/> <!--Cursor color-->
<PLAYCOLOR value = "FF00DD"/> <!--Cursor color-->
<MUTECOLOR value = "F5EBFF"/> <!--Text color-->
<SONGVIEW_FE value = "A55B8F" /> <!--Alt chain color1-->
<SONGVIEW_00 value = "853B6F" /> <!--Alt chain color2-->
<ROWCOLOR1 value = "BA28F9"/> <!--Row count color 1 -->
<ROWCOLOR2 value = "FF00FF"/> <!--Row count color 2-->
<ALTROWNUMBER value = "4"/> <!--How many rows before alternating-->
<BACKGROUND value = "505444" />
<FOREGROUND value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<BORDER value = "FF00DD" /> <!-- Dialog Border -->
<HICOLOR1 value = "F41B38" /> <!-- Highlight color 1 -->
<HICOLOR2 value = "FF0000" /> <!-- Highlight color 2 -->
<SONGVIEW_FE value = "A55B8F" /> <!-- Color of the chain "FE" in song screen -->
<SONGVIEW_00 value = "853B6F" /> <!-- Color of the chain "00" in song screen -->
<BLANKSPACE value = "853B6F" /> <!-- Color of the blanks in song and chain screens -->
<CURSORCOLOR value = "FF00DD" /> <!-- Cursor color -->
<PLAYCOLOR value = "FF00DD" /> <!-- Cursor color -->
<MUTECOLOR value = "FFFFFF" /> <!-- Text and cursor in cursor -->
<ROWCOLOR1 value = "BA28F9" /> <!-- Row count color 1 -->
<ROWCOLOR2 value = "FF00FF" /> <!-- Row count color 2 -->
<ALTROWNUMBER value = "4" /> <!-- How many rows of each ROWCOLOR -->
<FONTTYPE value = "0" /> <!-- "0": original, "1" :digital, "2": monster, "CUSTOM": load custom_font.xml -->

</CONFIG>
5 changes: 5 additions & 0 deletions sources/Application/AppWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ GUIColor AppWindow::normalColor_(0xF5, 0xEB, 0xFF);
GUIColor AppWindow::borderColor_(0xFF, 0x00, 0x8C);
GUIColor AppWindow::songviewfeColor_(0xA5, 0x5B, 0x8F);
GUIColor AppWindow::songview00Color_(0x85, 0x3B, 0x6F);
GUIColor AppWindow::blankspaceColor_(0xF5, 0xEB, 0xFF);
GUIColor AppWindow::highlightColor_(0xB7, 0x50, 0xD1);
GUIColor AppWindow::highlight2Color_(0xDB, 0x33, 0xDB);
GUIColor AppWindow::consoleColor_(0x00, 0xFF, 0x00);
Expand Down Expand Up @@ -103,6 +104,7 @@ AppWindow::AppWindow(I_GUIWindowImp &imp) : GUIWindow(imp) {
defineColor("BORDER", borderColor_);
defineColor("SONGVIEW_FE", songviewfeColor_);
defineColor("SONGVIEW_00", songview00Color_);
defineColor("BLANKSPACE", blankspaceColor_);
defineColor("HICOLOR1", highlightColor_);
defineColor("HICOLOR2", highlight2Color_);
defineColor("CURSORCOLOR", cursorColor_);
Expand Down Expand Up @@ -260,6 +262,9 @@ void AppWindow::Flush() {
case CD_SONGVIEW00:
gcolor = songview00Color_;
break;
case CD_BLANKSPACE:
gcolor = blankspaceColor_;
break;
case CD_ROW:
gcolor = rownumberColor_;
break;
Expand Down
1 change: 1 addition & 0 deletions sources/Application/AppWindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ class AppWindow : public GUIWindow, I_Observer, Status {
static GUIColor borderColor_;
static GUIColor songviewfeColor_;
static GUIColor songview00Color_;
static GUIColor blankspaceColor_;
static GUIColor highlight2Color_;
static GUIColor highlightColor_;
static GUIColor consoleColor_;
Expand Down
1 change: 1 addition & 0 deletions sources/Application/Views/BaseClasses/View.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ enum ColorDefinition {
CD_PLAY,
CD_MUTE,
CD_SONGVIEWFE,
CD_BLANKSPACE,
CD_SONGVIEW00,
CD_ROW,
CD_ROW2,
Expand Down
Loading