Skip to content

Commit 4f60640

Browse files
committed
Trim Dolphin.ini to only required things (hardcode SD path)
1 parent c5ef578 commit 4f60640

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

Data/user/Config/Dolphin.ini

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
[General]
22
ISOPaths = 2
3-
RecursiveISOPaths = False
4-
WiiSDCardPath = ./user/Wii/sd.raw
5-
WiiSDCardSyncFolder = ./user/Load/WiiSDSync/
63
ISOPath0 = ./Launcher
74
ISOPath1 = ./Games
8-
[NetPlay]
9-
SelectedHostGame = Project+ Netplay Launcher.dol
10-
TraversalChoice = traversal

Source/Core/Common/CommonPaths.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150

151151
#define WII_STATE "state.dat"
152152

153-
#define WII_SD_CARD_IMAGE "WiiSD.raw"
153+
#define WII_SD_CARD_IMAGE "sd.raw"
154154
#define WII_BTDINF_BACKUP "btdinf.bak"
155155

156156
#define WII_SETTING "setting.txt"

Source/Core/Common/FileUtil.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ static void RebuildUserDirectories(unsigned int dir_index)
899899
s_user_paths[F_ARAMDUMP_IDX] = s_user_paths[D_DUMP_IDX] + ARAM_DUMP;
900900
s_user_paths[F_FAKEVMEMDUMP_IDX] = s_user_paths[D_DUMP_IDX] + FAKEVMEM_DUMP;
901901
s_user_paths[F_GCSRAM_IDX] = s_user_paths[D_GCUSER_IDX] + GC_SRAM;
902-
s_user_paths[F_WIISDCARDIMAGE_IDX] = s_user_paths[D_LOAD_IDX] + WII_SD_CARD_IMAGE;
902+
s_user_paths[F_WIISDCARDIMAGE_IDX] = s_user_paths[D_WIIROOT_IDX] + WII_SD_CARD_IMAGE;
903903

904904
s_user_paths[D_MEMORYWATCHER_IDX] = s_user_paths[D_USER_IDX] + MEMORYWATCHER_DIR DIR_SEP;
905905
s_user_paths[F_MEMORYWATCHERLOCATIONS_IDX] =

0 commit comments

Comments
 (0)