Skip to content

Commit

Permalink
Fix copy and paste error in BootManager.cpp.
Browse files Browse the repository at this point in the history
  • Loading branch information
RachelBryk committed Jan 9, 2014
1 parent b55a4bb commit 216f4c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/BootManager.cpp
Expand Up @@ -124,7 +124,7 @@ bool BootCore(const std::string& _rFilename)
config_cache.Pads[i] = SConfig::GetInstance().m_SIDevice[i];
}
std::fill_n(config_cache.bSetWiimoteSource, 5, false);
std::fill_n(config_cache.bSetPads, 5, false);
std::fill_n(config_cache.bSetPads, 4, false);
config_cache.bSetEXIDevice[0] = false;
config_cache.bSetEXIDevice[1] = false;
config_cache.bSetFramelimit = false;
Expand Down

0 comments on commit 216f4c9

Please sign in to comment.