Rename var

This commit is contained in:
Armel FAUVEAU
2025-02-04 01:08:35 +01:00
parent bdef2e3a8c
commit 93da383e2e
3 changed files with 4 additions and 4 deletions

View File

@@ -57,7 +57,7 @@ const uint8_t gFontLight[9] =
0b00001100,
};
const uint8_t gFontSound[12] =
const uint8_t gFontMute[12] =
{
0b00011100,
0b00011100,

View File

@@ -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];

View File

@@ -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) {