Merge pull request #1863 from gtalusan/master

fix off-by-1 when removing header in hf_mfu_amiibo_restore
This commit is contained in:
Iceman 2023-01-09 17:46:51 +01:00 committed by GitHub
commit 72455389d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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