Skip to content

Commit

Permalink
Fixed a small bug for Android/iOS
Browse files Browse the repository at this point in the history
and added a few more ios icons >:(
  • Loading branch information
nkrapivin committed Aug 25, 2019
1 parent e883e89 commit 970ef82
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion objects/oBall/Mouse_53.gml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// @description swipe (ugly)
if (!activated) || (!scrIsMobile()) exit;
if (!activated || moving) || (!scrIsMobile()) exit;
mx = mouse_x;
my = mouse_y;
2 changes: 1 addition & 1 deletion objects/oBall/Mouse_56.gml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// @description swipe (ugly)
if (!activated) || (!scrIsMobile()) exit;
if (!activated || moving) || (!scrIsMobile()) exit;
var _mx = mouse_x;
var _my = mouse_y;
var _m = point_direction(mx,my,_mx,_my);
Expand Down
3 changes: 2 additions & 1 deletion objects/objMenuController/KeyRelease_8.gml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/// @description debug
show_debug_overlay(true);
surface_save(application_surface,"psp.png");
//Nothing to see here!
Binary file added options/ios/icons/notification/ipad_20.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added options/ios/icons/notification/ipad_40.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions options/ios/options_ios.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 970ef82

Please sign in to comment.