diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2024-03-29 13:46:20 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-29 13:46:20 -0500 |
| commit | 86102e7ce9e8a82206d8916fbc970f04c663a195 (patch) | |
| tree | d52a7c3a9e021289894d71f2bf478fcba2952ef9 /Source/Core/Common/FileUtil.cpp | |
| parent | fbc3539b4e80253f84378d51210d29f77e67646d (diff) | |
| parent | 88dadf81d41ee4c701b0f19fc2556b45fa7daea4 (diff) | |
Merge pull request #12670 from mitaclaw/branchwatch-fileutil-copy-paste
FileUtil: Fix BranchWatch User Path
Diffstat (limited to 'Source/Core/Common/FileUtil.cpp')
| -rw-r--r-- | Source/Core/Common/FileUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp index f7a8555875..20c57c2b5a 100644 --- a/Source/Core/Common/FileUtil.cpp +++ b/Source/Core/Common/FileUtil.cpp @@ -937,7 +937,7 @@ static void RebuildUserDirectories(unsigned int dir_index) s_user_paths[D_DUMPSSL_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_SSL_DIR DIR_SEP; s_user_paths[D_DUMPDEBUG_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_DEBUG_DIR DIR_SEP; s_user_paths[D_DUMPDEBUG_BRANCHWATCH_IDX] = - s_user_paths[D_DUMP_IDX] + DUMP_DEBUG_BRANCHWATCH_DIR DIR_SEP; + s_user_paths[D_DUMPDEBUG_IDX] + DUMP_DEBUG_BRANCHWATCH_DIR DIR_SEP; s_user_paths[F_MEM1DUMP_IDX] = s_user_paths[D_DUMP_IDX] + MEM1_DUMP; s_user_paths[F_MEM2DUMP_IDX] = s_user_paths[D_DUMP_IDX] + MEM2_DUMP; s_user_paths[F_ARAMDUMP_IDX] = s_user_paths[D_DUMP_IDX] + ARAM_DUMP; |
