chore(settings): Adjust NVDEC To CPU & Sync Core/Frame Interpolation To False

This commit is contained in:
Phoenix 2024-09-21 18:42:50 +10:00
parent f045a71be4
commit f6692c65c9

View File

@ -210,8 +210,8 @@ struct Values {
true,
true,
&use_speed_limit};
SwitchableSetting<bool> sync_core_speed{linkage, true, "sync_core_speed", Category::Core, Specialization::Default};
SwitchableSetting<bool> frame_interpolation{linkage, true, "frame_interpolation", Category::Core, Specialization::Default};
SwitchableSetting<bool> sync_core_speed{linkage, false, "sync_core_speed", Category::Core, Specialization::Default};
SwitchableSetting<bool> frame_interpolation{linkage, false, "frame_interpolation", Category::Core, Specialization::Default};
// Cpu
SwitchableSetting<CpuBackend, true> cpu_backend{linkage,
@ -294,7 +294,7 @@ struct Values {
linkage, VSyncMode::Fifo, VSyncMode::Immediate, VSyncMode::FifoRelaxed,
"use_vsync", Category::Renderer, Specialization::RuntimeList, true,
true};
SwitchableSetting<NvdecEmulation> nvdec_emulation{linkage, NvdecEmulation::Gpu,
SwitchableSetting<NvdecEmulation> nvdec_emulation{linkage, NvdecEmulation::Cpu,
"nvdec_emulation", Category::Renderer};
// *nix platforms may have issues with the borderless windowed fullscreen mode.
// Default to exclusive fullscreen on these platforms for now.