From 4d1de484c6fc1e413d4de271093f5e238ebe3015 Mon Sep 17 00:00:00 2001 From: bunnei Date: Fri, 5 Jul 2019 18:54:50 -0400 Subject: [PATCH] android: common: Add paths for Android SDCARD_DIR and EMU_DATA_DIR. --- src/common/common_paths.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/common_paths.h b/src/common/common_paths.h index 4942c02ab..dd58e90e7 100644 --- a/src/common/common_paths.h +++ b/src/common/common_paths.h @@ -20,6 +20,10 @@ #else #ifdef _WIN32 #define EMU_DATA_DIR "Citra" +#elif ANDROID +// On Android internal storage is mounted as "/sdcard" +#define SDCARD_DIR "sdcard" +#define EMU_DATA_DIR "citra-emu" #else #define EMU_DATA_DIR "citra-emu" #endif