Fixing Kawa

This commit is contained in:
retropikzel 2025-07-26 12:59:40 +03:00
parent 92dd4ade39
commit d14e0027a9
1 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,9 @@
(cond ((equal? type 'byte)
(java.lang.Byte value))
((equal? type 'uint8)
(java.lang.Byte value))
(gnu.math.UnsignedPrim value)
;(java.lang.Int value)
)
((equal? type 'short)
(java.lang.Short value))
((equal? type 'unsigned-short)