register_patches

This commit is contained in:
angie 2024-06-07 12:35:36 -04:00
parent 38654cc258
commit 2de76aabfa
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ namespace recomp {
void register_overlays(const overlay_section_table_data_t& sections, const overlays_by_index_t& overlays);
void register_patch(const char* patch_data, std::size_t patch_size, SectionTableEntry* code_sections);
void register_patches(const char* patch_data, std::size_t patch_size, SectionTableEntry* code_sections);
void read_patch_data(uint8_t* rdram, gpr patch_data_address);
void init_overlays();

View file

@ -22,7 +22,7 @@ void recomp::overlays::register_overlays(const overlay_section_table_data_t& sec
overlays_info = overlays;
}
void recomp::overlays::register_patch(const char* patch, std::size_t size, SectionTableEntry* sections) {
void recomp::overlays::register_patches(const char* patch, std::size_t size, SectionTableEntry* sections) {
patch_code_sections = sections;
patch_data.resize(size);