Skip to content

Commit

Permalink
fix ReadByte()
Browse files Browse the repository at this point in the history
  • Loading branch information
cheat-engine committed Dec 4, 2021
1 parent 73c384e commit 351b2ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cheat Engine/LuaHandler.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1817,7 +1817,7 @@ function readShortIntegerEx(L: PLua_State; processhandle: thandle): integer; cde
if signed then
lua_pushinteger(L, v)
else
lua_pushinteger(L, word(v));
lua_pushinteger(L, byte(v));

result:=1;
end;
Expand Down

0 comments on commit 351b2ef

Please sign in to comment.