Fix bug where characters were read as java characters

This commit is contained in:
Joshua Suskalo 2022-01-10 14:22:19 -06:00
parent 1b8923bc33
commit 900112b6e4

View file

@ -550,7 +550,7 @@
(defmethod deserialize-from ::char (defmethod deserialize-from ::char
[segment _type] [segment _type]
(MemoryAccess/getChar segment)) (char (Byte/toUnsignedInt (MemoryAccess/getByte segment))))
(defmethod deserialize-from ::float (defmethod deserialize-from ::float
[segment _type] [segment _type]