diff options
| author | 2024-01-10 15:36:22 -0500 | |
|---|---|---|
| committer | 2024-01-10 23:14:04 -0500 | |
| commit | d3ba6b334bdec89834f511dff70217fc9adb943c (patch) | |
| tree | 1ef29426132e0a136144d913a58b4e7cad946563 /src | |
| parent | android: Add button to use global driver value (diff) | |
| download | yuzu-d3ba6b334bdec89834f511dff70217fc9adb943c.tar.gz yuzu-d3ba6b334bdec89834f511dff70217fc9adb943c.tar.xz yuzu-d3ba6b334bdec89834f511dff70217fc9adb943c.zip | |
android: Fix added driver path
While this didn't break anything, the extra separator was unnecessary
Diffstat (limited to 'src')
| -rw-r--r-- | src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/DriverManagerFragment.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/DriverManagerFragment.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/DriverManagerFragment.kt index c01fdff25..9dabb9c41 100644 --- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/DriverManagerFragment.kt +++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/DriverManagerFragment.kt | |||
| @@ -179,7 +179,7 @@ class DriverManagerFragment : Fragment() { | |||
| 179 | false | 179 | false |
| 180 | ) { | 180 | ) { |
| 181 | val driverPath = | 181 | val driverPath = |
| 182 | "${GpuDriverHelper.driverStoragePath}/${FileUtil.getFilename(result)}" | 182 | "${GpuDriverHelper.driverStoragePath}${FileUtil.getFilename(result)}" |
| 183 | val driverFile = File(driverPath) | 183 | val driverFile = File(driverPath) |
| 184 | 184 | ||
| 185 | // Ignore file exceptions when a user selects an invalid zip | 185 | // Ignore file exceptions when a user selects an invalid zip |