FF1: Added URange fix for Bizhawk 2.9 support

URange wasn't moved to common.lua (and no longer exists in connector_ff1.lua) when the lua files were changed for Bizhawk 2.9 socket change.
This commit is contained in:
TheBigSalarius 2023-04-26 04:47:25 -04:00 committed by GitHub
parent 22ed7ff9c3
commit bb56f7b400
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -31,6 +31,7 @@ local untestedBizhawkMessage = "Warning: this version of bizhawk is newer than w
u8 = memory.read_u8 u8 = memory.read_u8
wU8 = memory.write_u8 wU8 = memory.write_u8
u16 = memory.read_u16_le u16 = memory.read_u16_le
uRange = memory.readbyterange
function getMaxMessageLength() function getMaxMessageLength()
local denominator = 12 local denominator = 12
@ -99,4 +100,4 @@ function checkBizhawkVersion()
print(untestedBizhawkMessage) print(untestedBizhawkMessage)
end end
return true return true
end end