From ddd3ade02309259cda20de14bdeef334a006ad1f Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 13 Sep 2013 19:55:15 +0200 Subject: macosx_application: fix file opening on 10.9 (for real this time) I did commit 86c05655d by thinking `mpv` already removed the `mpv` from argc/argv. It actually is still there, so the argc must be 1 to check for no arguments. Thanks to @Nyx0uf for pointing out the bug and for testing on 10.9! --- osdep/macosx_application.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'osdep/macosx_application.m') diff --git a/osdep/macosx_application.m b/osdep/macosx_application.m index c292c1fd53..b03e1731f5 100644 --- a/osdep/macosx_application.m +++ b/osdep/macosx_application.m @@ -429,7 +429,7 @@ static bool bundle_started_from_finder(int argc, char **argv) { bool bundle_detected = [[NSBundle mainBundle] bundleIdentifier]; bool pre_mavericks_args = argc==2 && psn_matches_current_process(argv[1]); - bool post_mavericks_args = argc==0; + bool post_mavericks_args = argc==1; return bundle_detected && (pre_mavericks_args || post_mavericks_args); } -- cgit v1.2.3