libnds: WIN1_X0/1 swapped
Posted: Sun Mar 23, 2008 9:15 am
The following applies to libnds 20071023.
I noticed a simple mistake on lines 445 and 446 of nds/arm9/video.h:
These two lines should instead read:
The two addresses should be swapped to reflect the ordering of the rest of the window-related defines.
I noticed a simple mistake on lines 445 and 446 of nds/arm9/video.h:
Code: Select all
#define WIN1_X0 (*(vuint8*)0x04000042)
#define WIN1_X1 (*(vuint8*)0x04000043)
Code: Select all
#define WIN1_X0 (*(vuint8*)0x04000043)
#define WIN1_X1 (*(vuint8*)0x04000042)