mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-11 01:10:33 +00:00
Use intptr types in overlays and dmadata (#1325)
This commit is contained in:
parent
3122143f96
commit
7254adec9f
9 changed files with 73 additions and 67 deletions
|
@ -11,7 +11,7 @@
|
|||
|
||||
// dmadata Table definition
|
||||
#define DEFINE_DMA_ENTRY(name, _1) \
|
||||
{ (u32)_##name##SegmentRomStart, (u32)_##name##SegmentRomEnd, (u32)_##name##SegmentRomStart, 0 },
|
||||
{ (uintptr_t)_##name##SegmentRomStart, (uintptr_t)_##name##SegmentRomEnd, (uintptr_t)_##name##SegmentRomStart, 0 },
|
||||
|
||||
DmaEntry gDmaDataTable[] = {
|
||||
#include "tables/dmadata_table.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue