diff --git a/src/platform/osx/main.mm b/src/platform/osx/main.mm index ed9f9ea..1cedbd8 100644 --- a/src/platform/osx/main.mm +++ b/src/platform/osx/main.mm @@ -318,10 +318,10 @@ int main() { // get path to game content NSBundle *bundle = [NSBundle mainBundle]; - NSURL *bundleURL = bundle.bundleURL; + NSURL *resourceURL = bundle.resourceURL; contentPath = new char[1024]; - [bundleURL getFileSystemRepresentation:contentPath maxLength:1024]; - strcat(contentPath, "/Contents/Resources/"); + [resourceURL getFileSystemRepresentation:contentPath maxLength:1024]; + strcat(contentPath, "/"); soundInit(); Game::init();