Browse Source

elf: Make DidRelocate const

pull/15/merge
Lioncash 11 years ago
parent
commit
bf23f94571
  1. 2
      src/core/loader/elf.cpp

2
src/core/loader/elf.cpp

@ -222,7 +222,7 @@ public:
int GetSectionSize(SectionID section) const { return sections[section].sh_size; }
SectionID GetSectionByName(const char *name, int firstSection = 0) const; //-1 for not found
bool DidRelocate() {
bool DidRelocate() const {
return relocate;
}
};

Loading…
Cancel
Save