From 0a7646cd946900198280caf33a18b1d979e27d26 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Fri, 21 Sep 2018 16:10:16 +0200 Subject: [PATCH] Fixed path to resources on OSX. --- src/slic3r.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r.cpp b/src/slic3r.cpp index e836bb90d..73bf49b27 100644 --- a/src/slic3r.cpp +++ b/src/slic3r.cpp @@ -50,7 +50,7 @@ int main(int argc, char **argv) "../../resources" : // Running from an installation directory: #if APPLE - '/../Resources' + "../Resources" #else "resources" #endif