From 057bc924c3ab93227f942a4b602745d6207f3e1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Tue, 5 Nov 2019 01:57:39 +0100 Subject: [PATCH] libretro buildfix --- libretro/libretro.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/libretro/libretro.cpp b/libretro/libretro.cpp index 27b10e4a41..fea2486715 100644 --- a/libretro/libretro.cpp +++ b/libretro/libretro.cpp @@ -183,7 +183,6 @@ static RetroOption ppsspp_texture_deposterize("ppsspp_texture_deposterize" static RetroOption ppsspp_texture_replacement("ppsspp_texture_replacement", "Texture Replacement", false); static RetroOption ppsspp_gpu_hardware_transform("ppsspp_gpu_hardware_transform", "GPU Hardware T&L", true); static RetroOption ppsspp_vertex_cache("ppsspp_vertex_cache", "Vertex Cache (Speedhack)", true); -static RetroOption ppsspp_separate_io_thread("ppsspp_separate_io_thread", "IO Threading", false); static RetroOption ppsspp_unsafe_func_replacements("ppsspp_unsafe_func_replacements", "Unsafe FuncReplacements", true); static RetroOption ppsspp_cheats("ppsspp_cheats", "Internal Cheats Support", false); static RetroOption ppsspp_io_timing_method("ppsspp_io_timing_method", "IO Timing Method", { { "Fast", IOTimingMethods::IOTIMING_FAST }, { "Host", IOTimingMethods::IOTIMING_HOST }, { "Simulate UMD delays", IOTimingMethods::IOTIMING_REALISTIC } }); @@ -210,7 +209,6 @@ void retro_set_environment(retro_environment_t cb) { vars.push_back(ppsspp_texture_replacement.GetOptions()); vars.push_back(ppsspp_gpu_hardware_transform.GetOptions()); vars.push_back(ppsspp_vertex_cache.GetOptions()); - vars.push_back(ppsspp_separate_io_thread.GetOptions()); vars.push_back(ppsspp_unsafe_func_replacements.GetOptions()); vars.push_back(ppsspp_cheats.GetOptions()); vars.push_back(ppsspp_io_timing_method.GetOptions()); @@ -274,7 +272,6 @@ static void check_variables(CoreParameter &coreParam) { ppsspp_texture_anisotropic_filtering.Update(&g_Config.iAnisotropyLevel); ppsspp_texture_deposterize.Update(&g_Config.bTexDeposterize); ppsspp_texture_replacement.Update(&g_Config.bReplaceTextures); - ppsspp_separate_io_thread.Update(&g_Config.bSeparateIOThread); ppsspp_unsafe_func_replacements.Update(&g_Config.bFuncReplacements); ppsspp_cheats.Update(&g_Config.bEnableCheats); ppsspp_locked_cpu_speed.Update(&g_Config.iLockedCPUSpeed);