CitraQt: Apply config at startup
This commit is contained in:
parent
ad664b4a01
commit
f2c8619704
6 changed files with 19 additions and 12 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue