skincreators Padawan
Nombre de messages : 113 Age : 32 Linker(s) : Cyclo DS Evolution Date d'inscription : 05/09/2008
| Sujet: [CODE] Charger un GIF animé Jeu 11 Sep - 18:22 | |
| Voci un bout de code qui permet de charger un sprite et que le loop du GIF animé fonctionne. Ici trans c'est le nom du GIF. Télécharger la demo: http://www.mediafire.com/?zbd2dmdmtbe - Code:
-
// Includes #include <PA9.h> // Include for PA_Lib
#include "trans.h" // gif to include
// Function: main() int main(int argc, char ** argv){
PA_Init(); // PA Init... PA_InitVBL(); // VBL Init... PA_Init8bitBg(0, 3); // Init a 16 bit Bg on screen 0 PA_Init8bitBg(1, 3); // Init a 8 bit Bg on screen 1
PA_LoadGif( 1, // Screen, which is 8 bit... (void*)trans); // Gif File
PA_GifAnimPlay();
while(1) { PA_LoadGif( 1, (void*)trans); PA_WaitForVBL(); } return 0; } // End of main() | |
|
SpixSh@dow Admin
Nombre de messages : 5582 Age : 32 Localisation : Etoile de la Mort Linker(s) : NinjaPass X9TF Date d'inscription : 16/12/2006
| Sujet: Re: [CODE] Charger un GIF animé Mer 24 Sep - 3:10 | |
| facile nan ? | |
|