diff options
Diffstat (limited to 'Source/Core/Common')
| -rw-r--r-- | Source/Core/Common/Src/CommonPaths.h | 1 | ||||
| -rw-r--r-- | Source/Core/Common/Src/FileUtil.cpp | 1 | ||||
| -rw-r--r-- | Source/Core/Common/Src/FileUtil.h | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/Common/Src/CommonPaths.h b/Source/Core/Common/Src/CommonPaths.h index 4441cfb8d7..decf2aef97 100644 --- a/Source/Core/Common/Src/CommonPaths.h +++ b/Source/Core/Common/Src/CommonPaths.h @@ -106,6 +106,7 @@ // Files in the directory returned by GetUserPath(D_DUMP_IDX) #define RAM_DUMP "ram.raw" #define ARAM_DUMP "aram.raw" +#define FAKEVMEM_DUMP "fakevmem.raw" // Sys files #define TOTALDB "totaldb.dsy" diff --git a/Source/Core/Common/Src/FileUtil.cpp b/Source/Core/Common/Src/FileUtil.cpp index 6dd800b723..4650c6e1ba 100644 --- a/Source/Core/Common/Src/FileUtil.cpp +++ b/Source/Core/Common/Src/FileUtil.cpp @@ -682,6 +682,7 @@ std::string &GetUserPath(const unsigned int DirIDX, const std::string &newPath) paths[F_WIISYSCONF_IDX] = paths[D_WIISYSCONF_IDX] + WII_SYSCONF; paths[F_RAMDUMP_IDX] = paths[D_DUMP_IDX] + RAM_DUMP; paths[F_ARAMDUMP_IDX] = paths[D_DUMP_IDX] + ARAM_DUMP; + paths[F_FAKEVMEMDUMP_IDX] = paths[D_DUMP_IDX] + FAKEVMEM_DUMP; paths[F_GCSRAM_IDX] = paths[D_GCUSER_IDX] + GC_SRAM; } diff --git a/Source/Core/Common/Src/FileUtil.h b/Source/Core/Common/Src/FileUtil.h index 5c8ba2186e..9134bcf44e 100644 --- a/Source/Core/Common/Src/FileUtil.h +++ b/Source/Core/Common/Src/FileUtil.h @@ -58,6 +58,7 @@ enum { F_WIISYSCONF_IDX, F_RAMDUMP_IDX, F_ARAMDUMP_IDX, + F_FAKEVMEMDUMP_IDX, F_GCSRAM_IDX, NUM_PATH_INDICES }; |
