diff --git a/frontend/drivers/platform_darwin.m b/frontend/drivers/platform_darwin.m index ed8679e6cf..0488d13206 100644 --- a/frontend/drivers/platform_darwin.m +++ b/frontend/drivers/platform_darwin.m @@ -390,8 +390,9 @@ static void frontend_darwin_get_environment_settings(int *argc, char *argv[], if (path_file_exists(assets_zip_path)) { - RARCH_LOG("Assets ZIP found at [%s], setting up bundle assets extraction...\n", bundle_path_buf); - strlcpy(settings->bundle_assets_src_path, assets_zip_path, sizeof(settings->bundle_assets_src_path)); + RARCH_LOG("Assets ZIP found at [%s], setting up bundle assets extraction...\n", assets_zip_path); + RARCH_LOG("Extraction dir will be: %s\n", home_dir_buf); + strlcpy(settings->bundle_assets_src_path, assets_zip_path, sizeof(settings->bundle_assets_src_path)); strlcpy(settings->bundle_assets_dst_path, home_dir_buf, sizeof(settings->bundle_assets_dst_path)); settings->bundle_assets_extract_version_current = 130; /* TODO/FIXME: Just hardcode this for now */ }