diff --git a/Source/Core/Common/CommonPaths.h b/Source/Core/Common/CommonPaths.h index ab141eb450..047f5dc967 100644 --- a/Source/Core/Common/CommonPaths.h +++ b/Source/Core/Common/CommonPaths.h @@ -11,6 +11,7 @@ #define ROOT_DIR "." // The normal user directory +#ifndef STEAM #ifdef _WIN32 #define NORMAL_USER_DIR "Dolphin Emulator" #elif defined(__APPLE__) @@ -20,6 +21,15 @@ #else #define NORMAL_USER_DIR "dolphin-emu" #endif +#else // ifndef STEAM +#ifdef _WIN32 +#define NORMAL_USER_DIR "Dolphin Emulator (Steam)" +#elif defined(__APPLE__) +#define NORMAL_USER_DIR "Library/Application Support/Dolphin (Steam)" +#else +#define NORMAL_USER_DIR "dolphin-emu-steam" +#endif +#endif // The portable user directory #ifdef _WIN32