Skip to content

Commit

Permalink
Merge pull request #2116 from Sonicadvance1/fix_exception_handler_crash
Browse files Browse the repository at this point in the history
Fix a crash with fastmem disabled.
  • Loading branch information
degasus committed Feb 24, 2015
2 parents 84f8547 + 28e55d2 commit be6a151
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Core/Core/Core.cpp
Expand Up @@ -337,7 +337,8 @@ static void CpuThread()
if (!_CoreParameter.bCPUThread)
g_video_backend->Video_Cleanup();

EMM::UninstallExceptionHandler();
if (_CoreParameter.bFastmem)
EMM::UninstallExceptionHandler();

return;
}
Expand Down

0 comments on commit be6a151

Please sign in to comment.