diff options
| author | 2021-06-13 07:47:57 -0400 | |
|---|---|---|
| committer | 2021-06-13 07:47:57 -0400 | |
| commit | a98b6c8f0759232fbb19ca611f954943f3f0b7af (patch) | |
| tree | fe92de3d998de6742f4506de9fcf7b798252e37c | |
| parent | Merge pull request #6452 from german77/sixaxis_firmware_stub (diff) | |
| download | yuzu-a98b6c8f0759232fbb19ca611f954943f3f0b7af.tar.gz yuzu-a98b6c8f0759232fbb19ca611f954943f3f0b7af.tar.xz yuzu-a98b6c8f0759232fbb19ca611f954943f3f0b7af.zip | |
common: fs: file: Flush the file to the disk when Flush() is called
std::fflush does not guarantee that file buffers are flushed to the disk.
Use _commit on Windows and fsync on all other OSes to ensure that the file is flushed to the disk.
| -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()}; |