summaryrefslogtreecommitdiff
path: root/src/core/loader/elf.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2015-01-02 20:32:16 -0500
committerGravatar Lioncash2015-01-02 20:32:16 -0500
commitbf23f945713f5e40ba4f96a2a279a6da2d516ba3 (patch)
tree941265350b35ff0371cb5412f3187b4b3b76e0bd /src/core/loader/elf.cpp
parentarchive: Fix initializer list order (diff)
downloadyuzu-bf23f945713f5e40ba4f96a2a279a6da2d516ba3.tar.gz
yuzu-bf23f945713f5e40ba4f96a2a279a6da2d516ba3.tar.xz
yuzu-bf23f945713f5e40ba4f96a2a279a6da2d516ba3.zip
elf: Make DidRelocate const
Diffstat (limited to 'src/core/loader/elf.cpp')
-rw-r--r--src/core/loader/elf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/elf.cpp b/src/core/loader/elf.cpp
index 354335014..3ca60c072 100644
--- a/src/core/loader/elf.cpp
+++ b/src/core/loader/elf.cpp
@@ -222,7 +222,7 @@ public:
222 int GetSectionSize(SectionID section) const { return sections[section].sh_size; } 222 int GetSectionSize(SectionID section) const { return sections[section].sh_size; }
223 SectionID GetSectionByName(const char *name, int firstSection = 0) const; //-1 for not found 223 SectionID GetSectionByName(const char *name, int firstSection = 0) const; //-1 for not found
224 224
225 bool DidRelocate() { 225 bool DidRelocate() const {
226 return relocate; 226 return relocate;
227 } 227 }
228}; 228};