mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 03:28:02 -05:00
CitraQt: Apply config at startup
This commit is contained in:
@ -4,8 +4,22 @@
|
||||
|
||||
#include "settings.h"
|
||||
|
||||
#include "core/gdbstub/gdbstub.h"
|
||||
|
||||
#include "video_core/video_core.h"
|
||||
|
||||
namespace Settings {
|
||||
|
||||
Values values = {};
|
||||
|
||||
void Apply() {
|
||||
|
||||
GDBStub::SetServerPort(static_cast<u32>(values.gdbstub_port));
|
||||
GDBStub::ToggleServer(values.use_gdbstub);
|
||||
|
||||
VideoCore::g_hw_renderer_enabled = values.use_hw_renderer;
|
||||
VideoCore::g_shader_jit_enabled = values.use_shader_jit;
|
||||
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
Reference in New Issue
Block a user