mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 12:27:57 -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
|
||||
|
@ -67,4 +67,6 @@ struct Values {
|
||||
u16 gdbstub_port;
|
||||
} extern values;
|
||||
|
||||
void Apply();
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user