suyu/src/core/settings.cpp

32 lines
795 B
C++
Raw Normal View History

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