diff options
| author | bunnei <bunneidev@gmail.com> | 2014-12-17 20:02:57 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2014-12-17 20:02:57 -0500 |
| commit | 94a103a00080f3f8f9ca9348ec0c5e819c6313e1 (patch) | |
| tree | 9e698ba00993a4aff1df4d60f9fcf3cf135ee76c /src/core/file_sys/file_backend.h | |
| parent | e6f440ea7f4d5f8c075a5735747ef8facbb4699a (diff) | |
| parent | ea9ce0fba776eef8f9e4f3a86e71256091732a14 (diff) | |
Merge pull request #288 from Subv/savedata_stuff
FS_U: Implemented the SaveData archive
Diffstat (limited to 'src/core/file_sys/file_backend.h')
| -rw-r--r-- | src/core/file_sys/file_backend.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/file_sys/file_backend.h b/src/core/file_sys/file_backend.h index 1b81d5fe9..539ec7314 100644 --- a/src/core/file_sys/file_backend.h +++ b/src/core/file_sys/file_backend.h @@ -61,6 +61,11 @@ public: * @return true if the file closed correctly */ virtual bool Close() const = 0; + + /** + * Flushes the file + */ + virtual void Flush() const = 0; }; } // namespace FileSys |
