Skip to content

Commit

Permalink
Android: Force RSP to be interpret
Browse files Browse the repository at this point in the history
  • Loading branch information
project64 committed Nov 9, 2023
1 parent 0c8b10b commit 296b7cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Project64-core/Settings.cpp
Expand Up @@ -395,7 +395,7 @@ void CSettings::AddHowToHandleSetting(const char * BaseDirectory)
AddHandler(Plugin_CONT_Current, new CSettingTypeApplication("Plugin", "Controller Dll", "Input\\Project64-Input.dll"));
#endif
#else
AddHandler(Plugin_RSP_Current, new CSettingTypeApplication("Plugin", "RSP Dll", "libProject64-rsp-hle.so"));
AddHandler(Plugin_RSP_Current, new CSettingTypeApplication("Plugin", "RSP Dll", "libPlugin-rsp.so"));
AddHandler(Plugin_GFX_Current, new CSettingTypeApplication("Plugin", "Graphics Dll", "libProject64-video.so"));
AddHandler(Plugin_AUDIO_Current, new CSettingTypeApplication("Plugin", "Audio Dll", "libProject64-audio-android.so"));
AddHandler(Plugin_CONT_Current, new CSettingTypeApplication("Plugin", "Controller Dll", "libProject64-input-android.so"));
Expand Down
2 changes: 1 addition & 1 deletion Source/Project64-rsp-core/RSPInfo.cpp
Expand Up @@ -88,7 +88,7 @@ void DetectCpuSpecs(void)
void RspPluginLoaded(void)
{
BreakOnStart = false;
#ifndef _M_X64
#if defined(_M_IX86) && defined(_MSC_VER)
g_CPUCore = RecompilerCPU;
#else
g_CPUCore = InterpreterCPU;
Expand Down

0 comments on commit 296b7cf

Please sign in to comment.