diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-21 18:30:04 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-21 18:30:04 -0700 |
| commit | 9533875eeb729d20ce2f92e9363a55c5894d262a (patch) | |
| tree | fb594e919f10e136dfcb523a71b1dd6a3a30bb53 /src/common/common_paths.h | |
| parent | d95a1a3742274fddc32fbc9c27a793c026422a2e (diff) | |
| parent | d66b43dadfac1e9324fee48e97361e2f858f8af5 (diff) | |
Merge pull request #760 from lioncash/path
file_util: Use an enum class for GetUserPath()
Diffstat (limited to 'src/common/common_paths.h')
| -rw-r--r-- | src/common/common_paths.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/common_paths.h b/src/common/common_paths.h index 9bf3efaf2..6799a357a 100644 --- a/src/common/common_paths.h +++ b/src/common/common_paths.h @@ -26,7 +26,7 @@ #define USA_DIR "USA" #define JAP_DIR "JAP" -// Subdirs in the User dir returned by GetUserPath(D_USER_IDX) +// Subdirs in the User dir returned by GetUserPath(UserPath::UserDir) #define CONFIG_DIR "config" #define CACHE_DIR "cache" #define SDMC_DIR "sdmc" @@ -35,11 +35,11 @@ #define LOG_DIR "log" // Filenames -// Files in the directory returned by GetUserPath(D_CONFIG_IDX) +// Files in the directory returned by GetUserPath(UserPath::ConfigDir) #define EMU_CONFIG "emu.ini" #define DEBUGGER_CONFIG "debugger.ini" #define LOGGER_CONFIG "logger.ini" -// Files in the directory returned by GetUserPath(D_LOGS_IDX) +// Files in the directory returned by GetUserPath(UserPath::LogDir) #define LOG_FILE "yuzu_log.txt" // Sys files |
