mirror of
https://github.com/N64Recomp/N64ModernRuntime.git
synced 2025-10-30 08:02:29 +00:00
Fixes for Windows and size_t (#46)
This commit is contained in:
parent
5f350b858e
commit
0c1811ca6f
1 changed files with 2 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
#define __RECOMP_OVERLAYS_H__
|
||||
|
||||
#include <cstdint>
|
||||
#include <cstddef>
|
||||
#include "sections.h"
|
||||
|
||||
namespace recomp {
|
||||
|
|
@ -19,7 +20,7 @@ namespace recomp {
|
|||
|
||||
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();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue