Skip to content

Commit

Permalink
fix: disable adapter rumble in Playback builds
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilNarayana committed May 1, 2022
1 parent 3f86dc4 commit 2ca1195
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Source/Core/Core/ConfigManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,11 @@ void SConfig::LoadCoreSettings(IniFile &ini)
for (int i = 0; i < MAX_SI_CHANNELS; ++i)
{
core->Get(StringFromFormat("SIDevice%i", i), (u32 *)&m_SIDevice[i], SIDEVICE_WIIU_ADAPTER);
#ifndef IS_PLAYBACK
core->Get(StringFromFormat("AdapterRumble%i", i), &m_AdapterRumble[i], true);
#else
core->Get(StringFromFormat("AdapterRumble%i", i), &m_AdapterRumble[i], false);
#endif
core->Get(StringFromFormat("SimulateKonga%i", i), &m_AdapterKonga[i], false);
}
core->Get("WiiSDCard", &m_WiiSDCard, false);
Expand Down

0 comments on commit 2ca1195

Please sign in to comment.