mirror of
https://github.com/N64Recomp/N64ModernRuntime.git
synced 2026-05-10 19:01:53 +00:00
register_patches
This commit is contained in:
parent
38654cc258
commit
2de76aabfa
2 changed files with 2 additions and 2 deletions
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue