Make extram uint8_t

This commit is contained in:
Toby Jaffey 2025-12-12 20:51:39 +00:00
parent 8158ac647c
commit 8c97057809
5 changed files with 10 additions and 10 deletions

View file

@ -153,7 +153,7 @@ int main(int argc, char *argv[]) {
return 1;
}
memset(extram_buf, 0x00, extram_len);
uvm32_extram(vmst, extram_buf, extram_len);
uvm32_extram(vmst, (uint8_t *)extram_buf, extram_len);
}
SDL_SetMainReady();