yuzu/src/core/settings.cpp

32 lines
795 B
C++
Raw Normal View History

// Copyright 2014 Citra Emulator Project
2014-12-17 05:38:14 +00:00
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "core/core.h"
2016-04-11 13:38:42 +01:00
#include "core/gdbstub/gdbstub.h"
2017-01-20 20:46:39 +00:00
#include "core/hle/service/hid/hid.h"
2017-05-28 00:31:42 +01:00
#include "core/settings.h"
#include "video_core/renderer_base.h"
2016-04-11 13:38:42 +01:00
#include "video_core/video_core.h"
namespace Settings {
Values values = {};
2016-04-11 13:38:42 +01:00
void Apply() {
GDBStub::SetServerPort(values.gdbstub_port);
2016-04-11 13:38:42 +01: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 20:46:39 +00:00
Service::HID::ReloadInputDevices();
}
2016-04-11 13:38:42 +01:00
} // namespace Settings