nds/libnds/source/arm9/image.c: Add needed cast

This commit is contained in:
Joel Sherrill
2015-03-21 14:41:53 -05:00
parent e2192d9f57
commit 90f2544035

View File

@@ -121,7 +121,7 @@ void imageTileData(sImage* img) {
free(img->image.data32);
img->image.data32 = temp;
img->image.data32 = (unsigned int *)temp;
}
//---------------------------------------------------------------------------------