#43538 - blaisef01 - Tue May 24, 2005 8:30 am
NDSLib:
There's a mistake in NDS\ARM9\video.h.
The background size defines are the wrong way round.
#define BG_32x64 (1 << 14)
#define BG_64x32 (2 << 14)
should be
#define BG_64x32 (1 << 14)
#define BG_32x64 (2 << 14)
I wish i'd worked this out 3 hours before completely destroying my attempt at what would have been some nice BG scrolling code :(
There's a mistake in NDS\ARM9\video.h.
The background size defines are the wrong way round.
#define BG_32x64 (1 << 14)
#define BG_64x32 (2 << 14)
should be
#define BG_64x32 (1 << 14)
#define BG_32x64 (2 << 14)
I wish i'd worked this out 3 hours before completely destroying my attempt at what would have been some nice BG scrolling code :(