CitraQt: Apply config at startup

This commit is contained in:
Jannik Vogel 2016-04-11 14:38:42 +02:00
parent ad664b4a01
commit f2c8619704
6 changed files with 19 additions and 12 deletions

View file

@ -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