Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Backends/Kore-HL/kha/arrays/ByteArray.hx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ abstract ByteArray(ByteArrayPrivate) {
}

public inline function getUint32(byteOffset: Int): Int {
return kinc_bytearray_getuint32(this.self, this.byteArrayOffset + byteOffset);
return kinc_bytearray_getuint32(this.self, this.byteArrayOffset + byteOffset).toInt();
}

public inline function getFloat32(byteOffset: Int): FastFloat {
Expand Down
1 change: 1 addition & 0 deletions Backends/Krom/Krom.hx
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ extern class Krom {
static function setKeyboardDownCallback(callback: Int->Void): Void;
static function setKeyboardUpCallback(callback: Int->Void): Void;
static function setKeyboardPressCallback(callback: Int->Void): Void;
static function setMouseCursor(cursor: Int): Void;
static function setMouseDownCallback(callback: Int->Int->Int->Void): Void;
static function setMouseUpCallback(callback: Int->Int->Int->Void): Void;
static function setMouseMoveCallback(callback: Int->Int->Int->Int->Void): Void;
Expand Down
Loading