mcd, fix type for memory setup (fixes LLP64 platforms)

This commit is contained in:
kub 2021-11-08 18:19:49 +01:00
parent 1510eeafd4
commit a704c216ba

View file

@ -1185,7 +1185,7 @@ PICO_INTERNAL void PicoMemSetupCD(void)
#ifdef __clang__ #ifdef __clang__
volatile // prevent strange relocs from clang volatile // prevent strange relocs from clang
#endif #endif
unsigned long ptr_ram = (uptr)PicoMem.ram; uptr ptr_ram = (uptr)PicoMem.ram;
int i; int i;
// M68k // M68k