diff options
Diffstat (limited to 'src/common/common_paths.h')
| -rw-r--r-- | src/common/common_paths.h | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/src/common/common_paths.h b/src/common/common_paths.h index ae08d082a..9d62a8368 100644 --- a/src/common/common_paths.h +++ b/src/common/common_paths.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | // Copyright 2013 Dolphin Emulator Project | 1 | // Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project |
| 2 | // Licensed under GPLv2 | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| @@ -29,19 +29,6 @@ | |||
| 29 | #endif | 29 | #endif |
| 30 | #endif | 30 | #endif |
| 31 | 31 | ||
| 32 | // Shared data dirs (Sys and shared User for linux) | ||
| 33 | #ifdef _WIN32 | ||
| 34 | #define SYSDATA_DIR "sys" | ||
| 35 | #else | ||
| 36 | #ifdef DATA_DIR | ||
| 37 | #define SYSDATA_DIR DATA_DIR "sys" | ||
| 38 | #define SHARED_USER_DIR DATA_DIR USERDATA_DIR DIR_SEP | ||
| 39 | #else | ||
| 40 | #define SYSDATA_DIR "sys" | ||
| 41 | #define SHARED_USER_DIR ROOT_DIR DIR_SEP USERDATA_DIR DIR_SEP | ||
| 42 | #endif | ||
| 43 | #endif | ||
| 44 | |||
| 45 | // Dirs in both User and Sys | 32 | // Dirs in both User and Sys |
| 46 | #define EUR_DIR "EUR" | 33 | #define EUR_DIR "EUR" |
| 47 | #define USA_DIR "USA" | 34 | #define USA_DIR "USA" |
| @@ -53,6 +40,9 @@ | |||
| 53 | #define MAPS_DIR "maps" | 40 | #define MAPS_DIR "maps" |
| 54 | #define CACHE_DIR "cache" | 41 | #define CACHE_DIR "cache" |
| 55 | #define SDMC_DIR "sdmc" | 42 | #define SDMC_DIR "sdmc" |
| 43 | #define SAVEDATA_DIR "savedata" | ||
| 44 | #define SYSDATA_DIR "sysdata" | ||
| 45 | #define SYSSAVEDATA_DIR "syssavedata" | ||
| 56 | #define SHADERCACHE_DIR "shader_cache" | 46 | #define SHADERCACHE_DIR "shader_cache" |
| 57 | #define STATESAVES_DIR "state_saves" | 47 | #define STATESAVES_DIR "state_saves" |
| 58 | #define SCREENSHOTS_DIR "screenShots" | 48 | #define SCREENSHOTS_DIR "screenShots" |
| @@ -70,6 +60,9 @@ | |||
| 70 | #define DEBUGGER_CONFIG "debugger.ini" | 60 | #define DEBUGGER_CONFIG "debugger.ini" |
| 71 | #define LOGGER_CONFIG "logger.ini" | 61 | #define LOGGER_CONFIG "logger.ini" |
| 72 | 62 | ||
| 63 | // Sys files | ||
| 64 | #define SHARED_FONT "shared_font.bin" | ||
| 65 | |||
| 73 | // Files in the directory returned by GetUserPath(D_LOGS_IDX) | 66 | // Files in the directory returned by GetUserPath(D_LOGS_IDX) |
| 74 | #define MAIN_LOG "emu.log" | 67 | #define MAIN_LOG "emu.log" |
| 75 | 68 | ||