libogc: GX_SetArray const correctness
Posted: Fri Oct 24, 2008 8:17 pm
The current definition of GX_SetArray is:
It should be:
Unless of course you expect the GX to be able to write to the void * array?
Code: Select all
void GX_SetArray(u32 attr,void *ptr,u8 stride)
Code: Select all
void GX_SetArray(u32 attr, const void *ptr,u8 stride)