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