Charles: (if youre using PALib)
Add the two attached files of that post into the "data" folder of your project.
+You habe to include the files
#include "bot.h"
#include "top.h"
Then go to your main-function
PA_Init16bitBg(0, 2); // Init a 16 bit Bg on screen 0
PA_Init16bitBg(1, 2); // Init a 16 bit Bg on screen 1
PA_LoadGif( 0,
(void*)top); // Gif File
PA_LoadGif( 1,
(void*)bot); // Gif File
s16 time = 180; // 180 frames = 3 seconds
while(time && (!Pad.Newpress.Anykey) && (!Stylus.Newpress)){
time--;
PA_WaitForVBL();
}
PA_ResetBgSys(); // Resett the BG system
!! Add this before you init texts / Other BGs, because of the "PA_ResetBgSys();" everything youve loaded on the BGs will be deleted.
And don't remove the ResetBG , because its problematic sometimes, to have more things loaded on the same screen.