Skip to content

Commit

Permalink
Merge pull request #54 from Sword352/master
Browse files Browse the repository at this point in the history
Fix compilation error caused by the last merged PR
  • Loading branch information
ianharrigan authored Sep 22, 2024
2 parents 1a1ea21 + 0ebd3a5 commit 3ecdd9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions haxe/ui/backend/AssetsImpl.hx
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ class AssetsImpl extends AssetsBase {
public override function imageInfoFromImageData(imageData:ImageData):ImageInfo {
return {
data: imageData,
width: imageData.frame.width,
height: imageData.frame.height
width: Std.int(imageData.frame.width),
height: Std.int(imageData.frame.height)
}
}

Expand Down

0 comments on commit 3ecdd9f

Please sign in to comment.