Search results

  1. Ksmiler

    AZ

    I liked it because it's based on the show Azumanga Daioh :D
  2. Ksmiler

    Locations of board members...

    Good ol' polluted North London, UK for me over here. ;)
  3. Ksmiler

    GP32 Text and Tiles

    Im not sure exactly what u mean but i assume u want the box to stop a bit further from the edge of the screen and towards the center of the screen. Sorry about the ints :D Explaination of the border variable: If higher than 0, the black box will stop further away from the screen's edge but...
  4. Ksmiler

    GP32 Text and Tiles

    Whew! i did it. k first i added two more global variables to the gpmain.c int py, px, ex, ey, exmax, eymax, edgex = 160 , edgey = 120; Then, in the GameEngine() procedure... void GameEngine() { while(1) { HandleInput(); ex = px - edgex; ey = py - edgey; if (ex < 0) ex = 0; if...
  5. Ksmiler

    GP32 Text and Tiles

    k, i tried your code and this is what i did. #include <stdlib.h> #include "gpdef.h" #include "gpstdlib.h" #include "gpgraphic.h" #include "gpmain.h" #include "gpstdio.h" #include "gpfont.h" /*#include "textdraw.h"*/ /* because i dont have this file, this part is disabled */ /* Defines */...
Back
Top