
I want to display an image like this:
Code: Select all
#include <nds.h>
#include "drunkenlogo_bin.h"
#include "palette_bin.h"
......
videoSetMode(MODE_5_2D );
vramSetBankA(VRAM_A_MAIN_BG);
int bg3 = bgInit(3, BgType_Bmp8, BgSize_B8_256x256, 0,0);
dmaCopy(drunkenlogo_bin, bgGetGfxPtr(bg3), 256*256);
dmaCopy(palette_bin, BG_PALETTE, 256*2);
(Plz don't say "Use the .grit stuff". I want to know how to convert .bmp to .bin)