mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-11-14 23:53:05 +00:00
Gcc warning onscreen (#1701)
* Fix GCC version detection for old CMAKE * Yellow tint version number / hash on gcc mismatch
This commit is contained in:
@@ -441,7 +441,17 @@ InformationView::InformationView(
|
||||
&version,
|
||||
<ime});
|
||||
|
||||
#if GCC_VERSION_MISMATCH
|
||||
static constexpr Style style_gcc_warning{
|
||||
.font = font::fixed_8x16,
|
||||
.background = {33, 33, 33},
|
||||
.foreground = Color::yellow(),
|
||||
};
|
||||
version.set_style(&style_gcc_warning);
|
||||
#else
|
||||
version.set_style(&style_infobar);
|
||||
#endif
|
||||
|
||||
ltime.set_style(&style_infobar);
|
||||
refresh();
|
||||
set_dirty();
|
||||
|
||||
Reference in New Issue
Block a user