Skip to content

Commit

Permalink
Merge pull request #5448 from XeR/master
Browse files Browse the repository at this point in the history
GeckoCode: install code handler even if no codes are activated
  • Loading branch information
leoetlino committed May 25, 2017
2 parents 5793a1f + d30eb7e commit 0f02085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/GeckoCode.cpp
Expand Up @@ -203,7 +203,7 @@ void RunCodeHandler()
{
// Don't spam retry if the install failed. The corrupt / missing disk file is not likely to be
// fixed within 1 frame of the last error.
if (s_active_codes.empty() || s_code_handler_installed == Installation::Failed)
if (s_code_handler_installed == Installation::Failed)
return;
s_code_handler_installed = InstallCodeHandlerLocked();

Expand Down

0 comments on commit 0f02085

Please sign in to comment.