[FL-3647] Rename menu items related to dummy mode and sound (#3177)

Co-authored-by: hedger <hedger@users.noreply.github.com>
This commit is contained in:
Astra 2023-10-31 15:34:21 +04:00 committed by GitHub
parent bbe68d6ffc
commit bf8984a225
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,13 +60,13 @@ void desktop_lock_menu_draw_callback(Canvas* canvas, void* model) {
str = "Lock";
} else if(i == DesktopLockMenuIndexStealth) {
if(m->stealth_mode) {
str = "Sound Mode";
str = "Unmute";
} else {
str = "Stealth Mode";
str = "Mute";
}
} else if(i == DesktopLockMenuIndexDummy) { //-V547
if(m->dummy_mode) {
str = "Brainiac Mode";
str = "Default Mode";
} else {
str = "Dummy Mode";
}