summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-19 02:01:54 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-19 02:01:54 +0100
commitdfce73ef2de0d912507a0d7819f8b469202852f5 (patch)
tree18ddcd1b2e5378b14c0cab7051b7d1a4b67e575e /src
parentdd51fd73ba78d4e8312f4cbc6dfa74cd957222c4 (diff)
Speculative fix to OS X shared_path to fix finding of Liberation-Sans.
Diffstat (limited to 'src')
-rw-r--r--src/lib/cross.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/cross.cc b/src/lib/cross.cc
index 285fbe1ce..76fa48cfe 100644
--- a/src/lib/cross.cc
+++ b/src/lib/cross.cc
@@ -169,7 +169,7 @@ shared_path ()
return path.parent_path();
#endif
#ifdef DCPOMATIC_OSX
- return app_contents();
+ return app_contents() / ".." / "Resources";
#endif
}