summaryrefslogtreecommitdiff
path: root/src/core/loader/elf.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2015-01-02 21:04:49 -0500
committerGravatar bunnei2015-01-02 21:04:49 -0500
commit3d9bf134399665124b3d3c65d7357c177bf2097e (patch)
treebb679ab15b8a8bb10947f6332e943e59d7d70ad0 /src/core/loader/elf.cpp
parentMerge pull request #385 from bunnei/dyncom-ldrex-strex-h-d (diff)
parentelf: Make DidRelocate const (diff)
downloadyuzu-3d9bf134399665124b3d3c65d7357c177bf2097e.tar.gz
yuzu-3d9bf134399665124b3d3c65d7357c177bf2097e.tar.xz
yuzu-3d9bf134399665124b3d3c65d7357c177bf2097e.zip
Merge pull request #391 from lioncash/pedantic
archive/elf: Minor misc changes.
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};