diff --git a/bitmaps.c b/bitmaps.c index 9ae0aa1..657729b 100644 --- a/bitmaps.c +++ b/bitmaps.c @@ -57,7 +57,7 @@ const uint8_t gFontLight[9] = 0b00001100, }; -const uint8_t gFontSound[12] = +const uint8_t gFontMute[12] = { 0b00011100, 0b00011100, diff --git a/bitmaps.h b/bitmaps.h index 565dd35..2b468ff 100644 --- a/bitmaps.h +++ b/bitmaps.h @@ -12,7 +12,7 @@ extern const uint8_t gFontS[6]; extern const uint8_t gFontKeyLock[9]; extern const uint8_t gFontLight[9]; -extern const uint8_t gFontSound[12]; +extern const uint8_t gFontMute[12]; extern const uint8_t gFontXB[2][6]; extern const uint8_t gFontMO[2][6]; diff --git a/ui/status.c b/ui/status.c index 7f05e65..f2ce468 100644 --- a/ui/status.c +++ b/ui/status.c @@ -233,8 +233,8 @@ void UI_DisplayStatus() } #ifdef ENABLE_FEAT_F4HWN else if (gMute) { - src = gFontSound; - size = sizeof(gFontSound); + src = gFontMute; + size = sizeof(gFontMute); } #endif else if (gBackLight) {