Skip to content

Commit 970ef82

Browse files
committed
Fixed a small bug for Android/iOS
and added a few more ios icons >:(
1 parent e883e89 commit 970ef82

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

objects/oBall/Mouse_53.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/// @description swipe (ugly)
2-
if (!activated) || (!scrIsMobile()) exit;
2+
if (!activated || moving) || (!scrIsMobile()) exit;
33
mx = mouse_x;
44
my = mouse_y;

objects/oBall/Mouse_56.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// @description swipe (ugly)
2-
if (!activated) || (!scrIsMobile()) exit;
2+
if (!activated || moving) || (!scrIsMobile()) exit;
33
var _mx = mouse_x;
44
var _my = mouse_y;
55
var _m = point_direction(mx,my,_mx,_my);
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/// @description debug
2-
show_debug_overlay(true);
2+
surface_save(application_surface,"psp.png");
3+
//Nothing to see here!
1.11 KB
Loading
2.68 KB
Loading

options/ios/options_ios.yy

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)