Android: Force RSP to be interpret

This commit is contained in:
zilmar 2023-11-09 12:45:36 +10:30
parent 0c8b10bbc7
commit 296b7cf1cf
2 changed files with 2 additions and 2 deletions

View File

@ -395,7 +395,7 @@ void CSettings::AddHowToHandleSetting(const char * BaseDirectory)
AddHandler(Plugin_CONT_Current, new CSettingTypeApplication("Plugin", "Controller Dll", "Input\\Project64-Input.dll")); AddHandler(Plugin_CONT_Current, new CSettingTypeApplication("Plugin", "Controller Dll", "Input\\Project64-Input.dll"));
#endif #endif
#else #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_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_AUDIO_Current, new CSettingTypeApplication("Plugin", "Audio Dll", "libProject64-audio-android.so"));
AddHandler(Plugin_CONT_Current, new CSettingTypeApplication("Plugin", "Controller Dll", "libProject64-input-android.so")); AddHandler(Plugin_CONT_Current, new CSettingTypeApplication("Plugin", "Controller Dll", "libProject64-input-android.so"));

View File

@ -88,7 +88,7 @@ void DetectCpuSpecs(void)
void RspPluginLoaded(void) void RspPluginLoaded(void)
{ {
BreakOnStart = false; BreakOnStart = false;
#ifndef _M_X64 #if defined(_M_IX86) && defined(_MSC_VER)
g_CPUCore = RecompilerCPU; g_CPUCore = RecompilerCPU;
#else #else
g_CPUCore = InterpreterCPU; g_CPUCore = InterpreterCPU;