From b0613bb1c857dd8f0e015217c2c74593132a630b Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 15 Apr 2015 00:38:21 -0400 Subject: General: Apply the const specifier where applicable --- Source/Core/Common/FileUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/Common/FileUtil.cpp') 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); -- cgit v1.2.3