summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service
diff options
context:
space:
mode:
authorMonsterDruide1 <5958456@gmail.com>2021-06-20 00:04:34 +0200
committerMonsterDruide1 <5958456@gmail.com>2021-09-18 23:22:30 +0200
commitf078b15565c8cab08587b8f8629d878615705cfb (patch)
treed6e18351980bbf1aac850831203caa127c796eba /src/core/hle/service
parentconfig: Move TAS options to it's own menu (diff)
downloadyuzu-f078b15565c8cab08587b8f8629d878615705cfb.tar
yuzu-f078b15565c8cab08587b8f8629d878615705cfb.tar.gz
yuzu-f078b15565c8cab08587b8f8629d878615705cfb.tar.bz2
yuzu-f078b15565c8cab08587b8f8629d878615705cfb.tar.lz
yuzu-f078b15565c8cab08587b8f8629d878615705cfb.tar.xz
yuzu-f078b15565c8cab08587b8f8629d878615705cfb.tar.zst
yuzu-f078b15565c8cab08587b8f8629d878615705cfb.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/apm/apm_interface.cpp2
-rw-r--r--src/core/hle/service/vi/vi.cpp3
2 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/service/apm/apm_interface.cpp b/src/core/hle/service/apm/apm_interface.cpp
index 520ccfa88..e58bad083 100644
--- a/src/core/hle/service/apm/apm_interface.cpp
+++ b/src/core/hle/service/apm/apm_interface.cpp
@@ -3,7 +3,6 @@
// Refer to the license.txt file included.
#include "common/logging/log.h"
-#include "common/settings.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/service/apm/apm.h"
#include "core/hle/service/apm/apm_controller.h"
@@ -121,7 +120,6 @@ void APM_Sys::SetCpuBoostMode(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_APM, "called, mode={:08X}", mode);
- Settings::values.is_cpu_boosted = (mode == CpuBoostMode::Full);
controller.SetFromCpuBoostMode(mode);
IPC::ResponseBuilder rb{ctx, 2};
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp
index f4eac0bca..8e8fc40ca 100644
--- a/src/core/hle/service/vi/vi.cpp
+++ b/src/core/hle/service/vi/vi.cpp
@@ -32,8 +32,6 @@
#include "core/hle/service/vi/vi_s.h"
#include "core/hle/service/vi/vi_u.h"
-#include "input_common/tas/tas_input.h"
-
namespace Service::VI {
constexpr ResultCode ERR_OPERATION_FAILED{ErrorModule::VI, 1};
@@ -597,7 +595,6 @@ private:
IGBPQueueBufferResponseParcel response{1280, 720};
ctx.WriteBuffer(response.Serialize());
- Settings::values.input_subsystem->GetTas()->UpdateThread();
break;
}
case TransactionId::Query: {