diff --git a/librecomp/include/librecomp/overlays.hpp b/librecomp/include/librecomp/overlays.hpp index 23b0ac7..a2d75f9 100644 --- a/librecomp/include/librecomp/overlays.hpp +++ b/librecomp/include/librecomp/overlays.hpp @@ -9,18 +9,18 @@ namespace recomp { namespace overlays { struct overlay_section_table_data_t { SectionTableEntry* code_sections; - std::size_t num_code_sections; - std::size_t total_num_sections; + size_t num_code_sections; + size_t total_num_sections; }; struct overlays_by_index_t { int* table; - std::size_t len; + size_t len; }; void register_overlays(const overlay_section_table_data_t& sections, const overlays_by_index_t& overlays); - void register_patches(const char* patch_data, std::size_t patch_size, SectionTableEntry* code_sections); + void register_patches(const char* patch_data, size_t patch_size, SectionTableEntry* code_sections); void read_patch_data(uint8_t* rdram, gpr patch_data_address); void init_overlays();