From c9bcfc69eb727a71b92e13abfea0828dc173e88a Mon Sep 17 00:00:00 2001 From: Palana Date: Fri, 11 Jul 2014 23:27:37 +0200 Subject: [PATCH] Fix compilation with OSX 10.8 SDK --- obs/platform-osx.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obs/platform-osx.mm b/obs/platform-osx.mm index b9f39a9f1..079f60b96 100644 --- a/obs/platform-osx.mm +++ b/obs/platform-osx.mm @@ -89,5 +89,5 @@ string GetDefaultVideoSavePath() if (!url) return getenv("HOME"); - return url.fileSystemRepresentation; + return url.path.fileSystemRepresentation; }