Closed heitbaum closed 5 months ago
I've currently no setup to check this. Are there any other compile problems after adding the now needed casts?
I've currently no setup to check this. Are there any other compile problems after adding the now needed casts?
I tested by adding the casts last night:
data = (uint8_t *) PicoMem.vram;
data = (uint8_t *) PicoMem.cram;
also - skip the cast and just return the pointer as the return is (void *)
return PicoMem.vram;
return PicoMem.cram;
OK, thanks for checking. IMHO the best way is maybe to change the type of data to void *, as it's not the same as the return anyway.
fixed with 60ef69 in my repo
The following errors stop the compile (this is compiling on x86_64 for x86_64)