Search results

  1. T

    GP32 Single Keypresses

    I believe that the solution to this problem is quite simple but after some coding I am still unable to get this to work. Basically I want to make it so that the user presses say the start button and then it turns something on like display a message then the message should dissapear again when...
  2. T

    GP32 Score Font

    Hi. I am currently trying to make a game and I am stuck trying to get a score system working. I know how to make the basic system but I don't know how I can change the font in order to get it to look nicer :( Is there a way of setting the font or will I have to do it all using tiles? I am...
  3. T

    GP32 Playing Sounds

    I am trying to play an 8-bit 11khz mono wav file with Mr.Mirkos SDK but it doesn't work. Is this at all possible or do I need to somehow convert it? The sound has been converted to a C header file with gp32 convert for windows by Edorul
  4. T

    GP32 Plotting A Circle

    Here is some simple code to plot a simple circle if anybody wants to know, using Mr.Mirkos SDK #include "gp32.h" #include <math.h> #define SCREENHEIGHT 320 #define SCREENWIDTH 240 #define BLACK 0x0000 #define WHITE 0xFFFF /*Globals*/ unsigned short *framebuffer; /*Prototypes*/ void...
  5. T

    GP32 Displaying Pic

    OK, I know a similar question to this has just been asked but I cannot get the GP32 to display an image :( with Mr.Mirkos SDK. I converted my picture to an array with the provided program and then used the following code: #include <gp32.h> #include "data.c" unsigned short *framebuffer; int...
Back
Top