Skip to content

Commit fd6c1ea

Browse files
committed
v0.9.342b
1 parent 663ece1 commit fd6c1ea

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,9 @@ Work is in progress...
230230

231231
---
232232
## Version history
233+
#### v0.9.342b
234+
- fixed compilation error for OLED displays
235+
233236
#### v0.9.340b
234237
- fixed compilation error audioVS1053Ex.cpp:181:5: error: 'sdog' was not declared in this scope
235238

yoRadio/src/core/options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef options_h
22
#define options_h
33

4-
#define YOVERSION "0.9.340b"
4+
#define YOVERSION "0.9.342b"
55

66
/*******************************************************
77
DO NOT EDIT THIS FILE.

yoRadio/src/displays/tools/oledcolorfix.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
config.theme.plcurrent = TFT_BG;
2828
config.theme.plcurrentbg = TFT_FG;
2929
config.theme.plcurrentfill = TFT_FG;
30-
for(byte i=0;i<5;i++) config.theme.playlist[i] = TFT_FG;
30+
for(uint8_t i=0;i<5;i++) config.theme.playlist[i] = TFT_FG;
3131

3232

3333
#endif

0 commit comments

Comments
 (0)