2014-09-12 19:06:13 -05:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 23:38:14 -06:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-12 19:06:13 -05:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-08-03 11:55:58 -05:00
|
|
|
#include "core/core.h"
|
2016-04-11 07:38:42 -05:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2017-01-20 14:46:39 -06:00
|
|
|
#include "core/hle/service/hid/hid.h"
|
2017-05-27 18:31:42 -05:00
|
|
|
#include "core/settings.h"
|
2018-08-01 19:59:42 -05:00
|
|
|
#include "video_core/renderer_base.h"
|
2016-04-11 07:38:42 -05:00
|
|
|
#include "video_core/video_core.h"
|
|
|
|
|
2014-09-12 19:06:13 -05:00
|
|
|
namespace Settings {
|
|
|
|
|
|
|
|
Values values = {};
|
|
|
|
|
2016-04-11 07:38:42 -05:00
|
|
|
void Apply() {
|
|
|
|
|
2017-01-31 11:44:23 -06:00
|
|
|
GDBStub::SetServerPort(values.gdbstub_port);
|
2016-04-11 07:38:42 -05:00
|
|
|
GDBStub::ToggleServer(values.use_gdbstub);
|
|
|
|
|
2016-12-06 13:33:19 -06:00
|
|
|
VideoCore::g_toggle_framelimit_enabled = values.toggle_framelimit;
|
2016-04-27 07:53:23 -05:00
|
|
|
|
2018-08-03 11:55:58 -05:00
|
|
|
auto& system_instance = Core::System::GetInstance();
|
|
|
|
if (system_instance.IsPoweredOn()) {
|
|
|
|
system_instance.Renderer().UpdateCurrentFramebufferLayout();
|
2016-05-03 01:07:17 -05:00
|
|
|
}
|
|
|
|
|
2017-01-20 14:46:39 -06:00
|
|
|
Service::HID::ReloadInputDevices();
|
2014-09-12 19:06:13 -05:00
|
|
|
}
|
2016-04-11 07:38:42 -05:00
|
|
|
|
2017-08-25 16:53:07 -05:00
|
|
|
} // namespace Settings
|