From 8e021a9f1fe249c835af8d0fde51da8fac7a1c5b Mon Sep 17 00:00:00 2001 From: Billy Laws Date: Thu, 12 May 2022 17:08:17 +0100 Subject: [PATCH] Load custom drivers from app private data dir Required since /sdcard doesn't have exec perm support --- app/src/main/cpp/skyline/gpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/cpp/skyline/gpu.cpp b/app/src/main/cpp/skyline/gpu.cpp index 1072bbe7..46f08ea9 100644 --- a/app/src/main/cpp/skyline/gpu.cpp +++ b/app/src/main/cpp/skyline/gpu.cpp @@ -337,7 +337,7 @@ namespace skyline::gpu { ADRENOTOOLS_DRIVER_CUSTOM, nullptr, // We require Android 10 so don't need to supply state.os->nativeLibraryPath.c_str(), - (state.os->publicAppFilesPath + "gpu/turnip/").c_str(), + (state.os->privateAppFilesPath + "gpu/turnip/").c_str(), "libvulkan_freedreno.so", nullptr )};