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)); } /**