Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Source.lua
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@ local function luau_deserialize(bytecode, luau_settings)
end

local function readInstruction(codeList)
local value = luau_settings.decodeOp(readWord())
local opcode = bit32_band(value, 0xFF)
local value = readWord()
local opcode = bit32_band(luau_settings.decodeOp(value), 0xFF)

local opinfo = opList[opcode + 1]
local opname = opinfo[1]
Expand Down