summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-13 22:51:38 +0100
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2015-02-16 18:13:29 +0900
commit63304b95a1786bc406c65aea3f5fec63de548687 (patch)
tree7ab02d6e565f94835fd3e83e387c3ed494cc7baa
parentf4263a811f434540ce51c85f27b968e059fb5299 (diff)
downloadmpv-63304b95a1786bc406c65aea3f5fec63de548687.tar.bz2
mpv-63304b95a1786bc406c65aea3f5fec63de548687.tar.xz
Fix build on OSX broken by previous commit
Hopefully. (cherry picked from commit 5247416735e86417d466f0137cf907b5921602a1)
-rw-r--r--player/configfiles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/configfiles.c b/player/configfiles.c
index 740484d7e2..466f248b04 100644
--- a/player/configfiles.c
+++ b/player/configfiles.c
@@ -103,7 +103,7 @@ void mp_parse_cfgfiles(struct MPContext *mpctx)
// Stupid hack to set OSX bundle defaults, if applicable. (The file is only
// found if starting from the OSX bundle.)
#if HAVE_COCOA
- load_all_cfgfiles(mpctx, section, "osx-bundle.conf");
+ load_all_cfgfiles(mpctx, section, "osx-bundle.conf", false);
#endif
int count = load_all_cfgfiles(mpctx, section, "mpv.conf", false);