Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #include <stdint.h>
  2. #include <tice.h>
  3. #include <math.h>
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7.  
  8. #include <graphx.h>
  9. #include <keypadc.h>
  10. #include <debug.h>
  11.  
  12. #include "gfx/gfx.h"
  13.  
  14. void main(void) {
  15. srand(rtc_Time());
  16.  
  17. gfx_SetPalette(gfx_pal, sizeof_gfx_pal, 0);
  18.  
  19. gfx_Begin();
  20.  
  21. gfx_FillScreen(255);
  22.  
  23. while(!os_GetCSC()){
  24. gfx_TransparentSprite_NoClip (HeroStill, 0, 0);
  25. }
  26.  
  27. gfx_End();
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement