Skip to content

Commit

Permalink
Fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
luboslenco committed Dec 13, 2023
1 parent 44c0ed5 commit 3d8a621
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion base/Sources/arm/io/ExportArm.hx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class ExportArm {
#if (krom_metal || krom_vulkan)
bgraSwap(mesh_icon_pixels);
#end
App.notifyOnNextFrame(function() {
Base.notifyOnNextFrame(function() {
mesh_icon.unload();
});
// Project.raw.mesh_icons =
Expand Down
2 changes: 1 addition & 1 deletion base/Sources/arm/ui/UIBox.hx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class UIBox {
Tween.reset();
Tween.to({target: UIBox, props: { tweenAlpha: 0.5 }, duration: 0.2, ease: Ease.ExpoOut});
UIBox.hwnd.dragY = Std.int(System.height / 2);
Tween.to({target: UIBox.hwnd, props: { dragY: 0 }, duration: 0.2, ease: Ease.ExpoOut, tick: function() { App.redrawUI(); }});
Tween.to({target: UIBox.hwnd, props: { dragY: 0 }, duration: 0.2, ease: Ease.ExpoOut, tick: function() { Base.redrawUI(); }});
}

static function tweenOut() {
Expand Down

0 comments on commit 3d8a621

Please sign in to comment.