diff options
author | Lioncash <mathew1800@gmail.com> | 2016-04-14 01:38:01 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2016-04-14 02:17:23 +0200 |
commit | 655623ebb2dd6f3f1451e5b8b92dc755868347c8 (patch) | |
tree | 3414e5072c23e063e743d57e8b0e6b42c742914d /src/common/file_util.cpp | |
parent | file_util: Don't expose IOFile internals through the API (diff) | |
download | yuzu-655623ebb2dd6f3f1451e5b8b92dc755868347c8.tar yuzu-655623ebb2dd6f3f1451e5b8b92dc755868347c8.tar.gz yuzu-655623ebb2dd6f3f1451e5b8b92dc755868347c8.tar.bz2 yuzu-655623ebb2dd6f3f1451e5b8b92dc755868347c8.tar.lz yuzu-655623ebb2dd6f3f1451e5b8b92dc755868347c8.tar.xz yuzu-655623ebb2dd6f3f1451e5b8b92dc755868347c8.tar.zst yuzu-655623ebb2dd6f3f1451e5b8b92dc755868347c8.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/file_util.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index 578c673b9..7d96d04d9 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp @@ -930,12 +930,12 @@ bool IOFile::Close() return m_good; } -u64 IOFile::GetSize() +u64 IOFile::GetSize() const { if (IsOpen()) return FileUtil::GetSize(m_file); - else - return 0; + + return 0; } bool IOFile::Seek(s64 off, int origin) @@ -946,12 +946,12 @@ bool IOFile::Seek(s64 off, int origin) return m_good; } -u64 IOFile::Tell() +u64 IOFile::Tell() const { if (IsOpen()) return ftello(m_file); - else - return -1; + + return -1; } bool IOFile::Flush() |