From 4e76dd631c9d9402b8c6d926337683252aa2a539 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Tue, 1 Feb 2022 09:58:19 +0100 Subject: [PATCH] early-access version 2457 --- README.md | 2 +- src/common/fs/file.h | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 94036048b..5f0e3cbaa 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 2456. +This is the source code for early-access 2457. ## Legal Notice diff --git a/src/common/fs/file.h b/src/common/fs/file.h index 2c4ab4332..a4f7944cd 100755 --- a/src/common/fs/file.h +++ b/src/common/fs/file.h @@ -188,9 +188,8 @@ public: #ifdef _WIN32 template - [[nodiscard]] void Open(const Path& path, FileAccessMode mode, - FileType type = FileType::BinaryFile, - FileShareFlag flag = FileShareFlag::ShareReadOnly) { + void Open(const Path& path, FileAccessMode mode, FileType type = FileType::BinaryFile, + FileShareFlag flag = FileShareFlag::ShareReadOnly) { using ValueType = typename Path::value_type; if constexpr (IsChar) { Open(ToU8String(path), mode, type, flag);