Skip to content

Commit

Permalink
Start custom themes with 1..4 instead of 0..3
Browse files Browse the repository at this point in the history
  • Loading branch information
sago007 committed Nov 15, 2023
1 parent 68c7593 commit b3d74fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/code/themes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ void InitThemes() {
}
}
ReadThemeDataFromFile("custom_themes.json");
for (int i=0; i < 4; ++i) {
for (int i=1; i <= 4; ++i) {
ThemesAddCustomSlot(themes, i);
}
DumpThemeData();
Expand Down

0 comments on commit b3d74fc

Please sign in to comment.