summaryrefslogtreecommitdiff
path: root/Source/Core/Common/FileUtil.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-04-15 00:38:21 -0400
committerLioncash <mathew1800@gmail.com>2015-04-15 02:04:03 -0400
commitb0613bb1c857dd8f0e015217c2c74593132a630b (patch)
treee3ed580f1146aa2faed4b4ebbcba6246e657427c /Source/Core/Common/FileUtil.cpp
parent7506c386cf316c68a62e4c4b1417c251cc8279d4 (diff)
General: Apply the const specifier where applicable
Diffstat (limited to 'Source/Core/Common/FileUtil.cpp')
-rw-r--r--Source/Core/Common/FileUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp
index 6779e62937..bb4ab0ca76 100644
--- a/Source/Core/Common/FileUtil.cpp
+++ b/Source/Core/Common/FileUtil.cpp
@@ -949,7 +949,7 @@ bool IOFile::Seek(s64 off, int origin)
return m_good;
}
-u64 IOFile::Tell()
+u64 IOFile::Tell() const
{
if (IsOpen())
return ftello(m_file);