Skip to content

Commit

Permalink
Merge pull request dolphin-emu#2852 from aserna3/master
Browse files Browse the repository at this point in the history
Changed GC adapter "Direct Connect" to false by default
  • Loading branch information
degasus committed Aug 15, 2015
2 parents e60018a + b6da549 commit b3045f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/ConfigManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ void SConfig::LoadCoreSettings(IniFile& ini)
core->Get("FrameSkip", &m_FrameSkip, 0);
core->Get("GFXBackend", &m_strVideoBackend, "");
core->Get("GPUDeterminismMode", &m_strGPUDeterminismMode, "auto");
core->Get("GameCubeAdapter", &m_GameCubeAdapter, true);
core->Get("GameCubeAdapter", &m_GameCubeAdapter, false);
core->Get("AdapterRumble", &m_AdapterRumble, true);
core->Get("PerfMapDir", &m_perfDir, "");
}
Expand Down

0 comments on commit b3045f9

Please sign in to comment.