mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-13 05:38:35 -07:00
OFW PR 3412 - Fixed MyKey LockID
by zProAle https://github.com/flipperdevices/flipperzero-firmware/pull/3412/files
This commit is contained in:
@@ -13,7 +13,7 @@ static bool mykey_is_blank(const St25tbData* data) {
|
||||
}
|
||||
|
||||
static bool mykey_has_lockid(const St25tbData* data) {
|
||||
return (data->blocks[5] & 0xFF) == 0x7F;
|
||||
return (data->blocks[5] >> 24) == 0x7F;
|
||||
}
|
||||
|
||||
static bool check_invalid_low_nibble(uint8_t value) {
|
||||
|
||||
Reference in New Issue
Block a user