From 3ba284c8c23b9077685b186ecd288a44cb5353fe Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Sat, 30 Oct 2021 07:49:11 +0200 Subject: [PATCH] early-access version 2168 --- README.md | 2 +- src/core/hle/result.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2214b601a..d6521041e 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 2167. +This is the source code for early-access 2168. ## Legal Notice diff --git a/src/core/hle/result.h b/src/core/hle/result.h index 00fe70998..2c6b24848 100755 --- a/src/core/hle/result.h +++ b/src/core/hle/result.h @@ -349,8 +349,8 @@ template * copy or move constructing. */ template -[[nodiscard]] ResultVal> MakeResult(Arg&& arg) { - return ResultVal>::WithCode(ResultSuccess, std::forward(arg)); +[[nodiscard]] ResultVal> MakeResult(Arg&& arg) { + return ResultVal>::WithCode(ResultSuccess, std::forward(arg)); } /**