diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-03 00:26:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-03 00:26:45 -0400 |
commit | 15e68cdbaac38bbf13cd4eb0d70d1e34b2fd4256 (patch) | |
tree | 9d072a572c0037a44e1e35aeffc242d3772a383c /src/common/common_paths.h | |
parent | e3ca561ea0aa2e38dd1bba6757c7170448579554 (diff) | |
parent | 76b475faf774a7a357bdc707e556c75f7975bc45 (diff) |
Merge pull request #607 from jroweboy/logging
Logging - Customizable backends
Diffstat (limited to 'src/common/common_paths.h')
-rw-r--r-- | src/common/common_paths.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/common_paths.h b/src/common/common_paths.h index 0a6132dab..d03fca314 100644 --- a/src/common/common_paths.h +++ b/src/common/common_paths.h @@ -32,12 +32,15 @@ #define SDMC_DIR "sdmc" #define NAND_DIR "nand" #define SYSDATA_DIR "sysdata" +#define LOG_DIR "log" // Filenames // Files in the directory returned by GetUserPath(D_CONFIG_IDX) #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) +#define LOG_FILE "citra_log.txt" // Sys files #define SHARED_FONT "shared_font.bin" |