summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fatal/fatal.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-30 08:06:23 +0100
committerLioncash <mathew1800@gmail.com>2019-03-30 08:06:23 +0100
commit4b33a346eddd582beacaa810036a517ec28f8598 (patch)
tree260d16f2bbc7d34d905d395e0b64b9d90ec724c3 /src/core/hle/service/fatal/fatal.cpp
parentservice/fatal: Remove unnecessary semicolon (diff)
downloadyuzu-4b33a346eddd582beacaa810036a517ec28f8598.tar
yuzu-4b33a346eddd582beacaa810036a517ec28f8598.tar.gz
yuzu-4b33a346eddd582beacaa810036a517ec28f8598.tar.bz2
yuzu-4b33a346eddd582beacaa810036a517ec28f8598.tar.lz
yuzu-4b33a346eddd582beacaa810036a517ec28f8598.tar.xz
yuzu-4b33a346eddd582beacaa810036a517ec28f8598.tar.zst
yuzu-4b33a346eddd582beacaa810036a517ec28f8598.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/fatal/fatal.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/service/fatal/fatal.cpp b/src/core/hle/service/fatal/fatal.cpp
index 8160a006a..2c229bcad 100644
--- a/src/core/hle/service/fatal/fatal.cpp
+++ b/src/core/hle/service/fatal/fatal.cpp
@@ -144,7 +144,7 @@ static void ThrowFatalError(ResultCode error_code, FatalType fatal_type, const F
void Module::Interface::ThrowFatal(Kernel::HLERequestContext& ctx) {
LOG_ERROR(Service_Fatal, "called");
IPC::RequestParser rp{ctx};
- auto error_code = rp.Pop<ResultCode>();
+ const auto error_code = rp.Pop<ResultCode>();
ThrowFatalError(error_code, FatalType::ErrorScreen, {});
IPC::ResponseBuilder rb{ctx, 2};
@@ -154,8 +154,8 @@ void Module::Interface::ThrowFatal(Kernel::HLERequestContext& ctx) {
void Module::Interface::ThrowFatalWithPolicy(Kernel::HLERequestContext& ctx) {
LOG_ERROR(Service_Fatal, "called");
IPC::RequestParser rp(ctx);
- auto error_code = rp.Pop<ResultCode>();
- auto fatal_type = rp.PopEnum<FatalType>();
+ const auto error_code = rp.Pop<ResultCode>();
+ const auto fatal_type = rp.PopEnum<FatalType>();
ThrowFatalError(error_code, fatal_type, {}); // No info is passed with ThrowFatalWithPolicy
IPC::ResponseBuilder rb{ctx, 2};
@@ -165,9 +165,9 @@ void Module::Interface::ThrowFatalWithPolicy(Kernel::HLERequestContext& ctx) {
void Module::Interface::ThrowFatalWithCpuContext(Kernel::HLERequestContext& ctx) {
LOG_ERROR(Service_Fatal, "called");
IPC::RequestParser rp(ctx);
- auto error_code = rp.Pop<ResultCode>();
- auto fatal_type = rp.PopEnum<FatalType>();
- auto fatal_info = ctx.ReadBuffer();
+ const auto error_code = rp.Pop<ResultCode>();
+ const auto fatal_type = rp.PopEnum<FatalType>();
+ const auto fatal_info = ctx.ReadBuffer();
FatalInfo info{};
ASSERT_MSG(fatal_info.size() == sizeof(FatalInfo), "Invalid fatal info buffer size!");