Address review feedback

This commit is contained in:
dcvz 2024-05-24 21:41:41 +02:00
parent ce63a90d47
commit ca9425d7c2
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ namespace recomp {
};
extern void register_overlays(const overlay_section_table_data_t& sections, const overlays_by_index_t& overlays);
extern void register_patch_overlays(SectionTableEntry* code_sections);
extern void register_patch_section(SectionTableEntry* code_sections);
};
extern "C" void load_overlays(uint32_t rom, int32_t ram_addr, uint32_t size);

View file

@ -9,7 +9,7 @@ static SectionTableEntry* code_sections = nullptr;
void load_special_overlay(const SectionTableEntry& section, int32_t ram);
void register_patch_overlays(SectionTableEntry* sections) {
void register_patch_section(SectionTableEntry* sections) {
code_sections = sections;
}