summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-06-16 04:03:19 +0200
committerGitHub <noreply@github.com>2021-06-16 04:03:19 +0200
commit78651b54760b4a33984db0e0ad421185606834f8 (patch)
tree2036caaad2c7c0cd94b48536c60e4ec9687e79fe
parentMerge pull request #6470 from ameerj/lm-silence (diff)
parentcommon: fs: file: Flush the file to the disk when Flush() is called (diff)
downloadyuzu-78651b54760b4a33984db0e0ad421185606834f8.tar
yuzu-78651b54760b4a33984db0e0ad421185606834f8.tar.gz
yuzu-78651b54760b4a33984db0e0ad421185606834f8.tar.bz2
yuzu-78651b54760b4a33984db0e0ad421185606834f8.tar.lz
yuzu-78651b54760b4a33984db0e0ad421185606834f8.tar.xz
yuzu-78651b54760b4a33984db0e0ad421185606834f8.tar.zst
yuzu-78651b54760b4a33984db0e0ad421185606834f8.zip
-rw-r--r--src/common/fs/file.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/fs/file.cpp b/src/common/fs/file.cpp
index 9f3de1cb0..c84f31f3e 100644
--- a/src/common/fs/file.cpp
+++ b/src/common/fs/file.cpp
@@ -309,7 +309,11 @@ bool IOFile::Flush() const {
errno = 0;
- const auto flush_result = std::fflush(file) == 0;
+#ifdef _WIN32
+ const auto flush_result = std::fflush(file) == 0 && _commit(fileno(file)) == 0;
+#else
+ const auto flush_result = std::fflush(file) == 0 && fsync(fileno(file)) == 0;
+#endif
if (!flush_result) {
const auto ec = std::error_code{errno, std::generic_category()};