diff --git a/renderdoc/os/posix/apple/apple_helpers.mm b/renderdoc/os/posix/apple/apple_helpers.mm index 05987ee18..746825391 100644 --- a/renderdoc/os/posix/apple/apple_helpers.mm +++ b/renderdoc/os/posix/apple/apple_helpers.mm @@ -67,8 +67,8 @@ rdcstr apple_GetExecutablePathFromAppBundle(const char *appBundlePath) NSBundle *nsBundle = [NSBundle bundleWithPath:path]; if(!nsBundle) { - RDCERR("Failed to open application '%s' as an NSBundle", appBundlePath); - return rdcstr(); + RDCWARN("Failed to open application '%s' as an NSBundle", appBundlePath); + return rdcstr(appBundlePath); } NSString *executablePath = nsBundle.executablePath;