mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
fix off-by-1 when removing header in hf_mfu_amiibo_restore
This commit is contained in:
parent
f2185b3933
commit
90b1cb7954
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ local function main(args)
|
||||||
|
|
||||||
-- chomp emu header
|
-- chomp emu header
|
||||||
if #hex == 1192 then
|
if #hex == 1192 then
|
||||||
hex = hex:sub(112)
|
hex = hex:sub(113)
|
||||||
end
|
end
|
||||||
|
|
||||||
local amiibo_offset = 0
|
local amiibo_offset = 0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue