diff options
| author | 2021-06-15 19:03:19 -0700 | |
|---|---|---|
| committer | 2021-06-15 19:03:19 -0700 | |
| commit | 78651b54760b4a33984db0e0ad421185606834f8 (patch) | |
| tree | 2036caaad2c7c0cd94b48536c60e4ec9687e79fe /src/common/fs | |
| parent | Merge pull request #6470 from ameerj/lm-silence (diff) | |
| parent | common: fs: file: Flush the file to the disk when Flush() is called (diff) | |
| download | yuzu-78651b54760b4a33984db0e0ad421185606834f8.tar.gz yuzu-78651b54760b4a33984db0e0ad421185606834f8.tar.xz yuzu-78651b54760b4a33984db0e0ad421185606834f8.zip | |
Merge pull request #6462 from Morph1984/proper-flush
common: fs: file: Flush the file to the disk when Flush() is called
Diffstat (limited to 'src/common/fs')
| -rw-r--r-- | src/common/fs/file.cpp | 6 |
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 { | |||
| 309 | 309 | ||
| 310 | errno = 0; | 310 | errno = 0; |
| 311 | 311 | ||
| 312 | const auto flush_result = std::fflush(file) == 0; | 312 | #ifdef _WIN32 |
| 313 | const auto flush_result = std::fflush(file) == 0 && _commit(fileno(file)) == 0; | ||
| 314 | #else | ||
| 315 | const auto flush_result = std::fflush(file) == 0 && fsync(fileno(file)) == 0; | ||
| 316 | #endif | ||
| 313 | 317 | ||
| 314 | if (!flush_result) { | 318 | if (!flush_result) { |
| 315 | const auto ec = std::error_code{errno, std::generic_category()}; | 319 | const auto ec = std::error_code{errno, std::generic_category()}; |