From db6a9b4ab5425fa0bd9eeb7ffef5155dc12e27c6 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Thu, 8 Oct 2020 18:32:38 +1000 Subject: [PATCH] Android: Slightly improve scoped storage error message --- .../java/com/github/stenzek/duckstation/MainActivity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/app/src/main/java/com/github/stenzek/duckstation/MainActivity.java b/android/app/src/main/java/com/github/stenzek/duckstation/MainActivity.java index 7761a3276..b63cbce5d 100644 --- a/android/app/src/main/java/com/github/stenzek/duckstation/MainActivity.java +++ b/android/app/src/main/java/com/github/stenzek/duckstation/MainActivity.java @@ -180,9 +180,9 @@ public class MainActivity extends AppCompatActivity { if (path.length() < 5) { new AlertDialog.Builder(this) .setTitle("Error") - .setMessage("Failed to get path for the selected directory. Please make sure the directory is in external storage.\n" + + .setMessage("Failed to get path for the selected directory. Please make sure the directory is in internal/external storage.\n\n" + "Tap the overflow button in the directory selector.\nSelect \"Show Internal Storage\".\n" + - "Tap the menu button and select your device name.") + "Tap the menu button and select your device name or SD card.") .setPositiveButton("OK", (dialog, button) -> {}) .create() .show();