As mentioned here https://github.com/gbadev-org/tonc/issues/112#issuecomment-2305310404 I've fixed the examples to not use memcpy() when copying data to VRAM. We need to check the text to see if there are instances of using memcpy(), and switch them to memcpy16() or memcpy32().
As mentioned here https://github.com/gbadev-org/tonc/issues/112#issuecomment-2305310404 I've fixed the examples to not use
memcpy()
when copying data to VRAM. We need to check the text to see if there are instances of usingmemcpy()
, and switch them tomemcpy16()
ormemcpy32()
.