Fixed VOICE_ID_UNLOCK.

This commit is contained in:
Dual Tachyon 2023-08-28 01:27:31 +01:00
parent b0b09a2e6a
commit 69ddbacce9
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ void GENERIC_Key_F(bool bKeyPressed, bool bKeyHeld)
return;
}
if (gEeprom.KEY_LOCK) {
gAnotherVoiceID = VOICE_ID_M_LOCK;
gAnotherVoiceID = VOICE_ID_UNLOCK;
} else {
gAnotherVoiceID = VOICE_ID_LOCK;
}

View File

@ -49,7 +49,7 @@ enum VOICE_ID_t {
VOICE_ID_100 = 0x0BU,
VOICE_ID_WELCOME = 0x0CU,
VOICE_ID_LOCK = 0x0DU,
VOICE_ID_M_LOCK = 0x0EU,
VOICE_ID_UNLOCK = 0x0EU,
VOICE_ID_SCANNING_BEGIN = 0x0FU,
VOICE_ID_SCANNING_STOP = 0x10U,
VOICE_ID_SCRAMBLER_ON = 0x11U,