Search results

  1. O

    GP32 Gpfontmaker 2.0 W.i.p

    I’m working on version 2.0 of GPFontMaker. At first glance, the program seems to be the same, but in reality it contains new properties that allows you de generate fonts of a better quality (if we want to spent some time to post process the font with an image editor). To do that, now you can...
  2. O

    GP32 Double-buffer Help

    By the way, if you say that you tend to use as little line as possible, you can change your code: by this one (sol 1): if (++nflip >= BUFFER_COUNT) nflip = 0; showscreen(nflip); or even this one (sol 2): showscreen(nflip = (++nflip >= BUFFER_COUNT ? 0 : nflip)); Here are some tricks you...
  3. O

    GP32 Double-buffer Help

    Hi Pirotic. I know that you have resolved your fickering problem but I have something that could interest you. In my games I never had flickering problems until one day I tryed other clock speeds in Animings to see the diference. Some clock speeds were absolutly smooth, while others made my...
  4. O

    Do You Develop For The GP32?

    On the PC side I have coded GPFontMaker. On the GP32 side I have coded Puzzle Mix and Animings. I had also started to code an RTF Reader compatible with TrueType fonts (without images), but I have paused the project because I have read on GP32Spain that with the realease in Europe of the GP32...
  5. O

    Website Go Poof

    I liked your reviews, and was waiting for the reviews of the other games in the list, especially Animings. Sniff. :(
  6. O

    Idea For Anyone Making A Puzzle Game

    That is the same idea I had for my games, but instead of MP3 it will be MOD files.
  7. O

    Puzzle Mix

    I don't know why you should be bothered about something. I think you have made a very good review :) and I agree with you in almost all respects. It was just that my goal when I started Puzzle Mix was to offer something more than just clones of existing games ;) About the date of the next...
  8. O

    Puzzle Mix

    Puzzle Mix has 4 different puzzle games that are not all clones of existing games. TriBlocks is based on the well known Columns game. It's very similar to Columns if you play it in Marathon mode, but if you play it in Chained mode, the goal is completely different, even if you still have to...
  9. O

    I Need A Batch File Renamer

    See example "I want to delete the artist" in http://www.1-4a.com/rename/rename-examples.htm#examples for an explanation of the # behaviour.
  10. O

    GP32 Flickeing Problems

    Do you think you need to run at 133mhz? :blink: Puzzle Mix runs entirely at 40mhz without problems and with only 2 surfaces. Try another speed as I have noticed that at 16mhz and 66.5mhz, for example, the right side of my screen flickers but not at other speeds.
  11. O

    GP32 GpAppExit()

    The same for me, it's why I always use GpAppExit() as the last instruction of my games.
  12. O

    GPFontMaker

    I've made public an utility named GPFontMaker v1.1.0 that I've programmed to help me in preparing fonts for my games. It allows you to take any TrueType font, post process it with you favourite image processor and export it to C source file(s). Actually it works only at 100% for 16bits fonts...
  13. O

    OpenSnes9XGP 0.3 WIP

    My only wish is to have the possibility to browse the name of the file inside the ZIP instead of the shorter ZIP filename. Keep the good work !!
Back
Top