2014-09-13 00:06:13 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-13 00:06:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-04-11 12:38:42 +00:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2017-01-20 20:46:39 +00:00
|
|
|
#include "core/hle/service/hid/hid.h"
|
2017-05-27 23:31:42 +00:00
|
|
|
#include "core/settings.h"
|
2016-04-11 12:38:42 +00:00
|
|
|
#include "video_core/video_core.h"
|
|
|
|
|
2016-12-23 13:37:40 +00:00
|
|
|
#include "core/frontend/emu_window.h"
|
2016-05-03 06:07:17 +00:00
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
namespace Settings {
|
|
|
|
|
|
|
|
Values values = {};
|
|
|
|
|
2016-04-11 12:38:42 +00:00
|
|
|
void Apply() {
|
|
|
|
|
2017-01-31 17:44:23 +00:00
|
|
|
GDBStub::SetServerPort(values.gdbstub_port);
|
2016-04-11 12:38:42 +00:00
|
|
|
GDBStub::ToggleServer(values.use_gdbstub);
|
|
|
|
|
2016-12-06 19:33:19 +00:00
|
|
|
VideoCore::g_toggle_framelimit_enabled = values.toggle_framelimit;
|
2016-04-27 12:53:23 +00:00
|
|
|
|
2016-05-03 06:07:17 +00:00
|
|
|
if (VideoCore::g_emu_window) {
|
|
|
|
auto layout = VideoCore::g_emu_window->GetFramebufferLayout();
|
|
|
|
VideoCore::g_emu_window->UpdateCurrentFramebufferLayout(layout.width, layout.height);
|
|
|
|
}
|
|
|
|
|
2017-01-20 20:46:39 +00:00
|
|
|
Service::HID::ReloadInputDevices();
|
2014-09-13 00:06:13 +00:00
|
|
|
}
|
2016-04-11 12:38:42 +00:00
|
|
|
|
2017-08-25 21:53:07 +00:00
|
|
|
} // namespace Settings
|