Search results

  1. O

    GP32 The Devkitarm Blues.....

    Try adding gpstart.c that is located in your GP SDK to .CFILES like: .CFILES = $(GPSDK)/gpstart.c gpmain.c
  2. O

    GP32 Single Keypresses

    Try this: #include "gpdef.h" #include "gpstdlib.h" #include "gpgraphic.h" #include "gpfont.h" #include "gpmm.h" #include "gpstdio.h" /* global variable */ GPDRAWSURFACE gpDraw[2]; int nflip; void GpMain(void * arg) { int pressedKeys, newKeys, oldKeys; int select=FALSE...
  3. O

    GP32 Linked Lists.

    Here is my solution with GP32 Standard SDK. list.h list.c You can find a description of each function here. I will document it when..., well I don't know when! Oankali.
  4. O

    GP32 Timing Problem Or Is My Code To Slow?

    Did not know of this type of optimization. :huh:
  5. O

    Smc/firmware Woes

    It is FAT. But there is different types of FAT: FAT12, FAT16 and FAT32. Windows formats in FAT16 or FAT32. GP32 and some digital cameras format in FAT12. The moral of the story: Format your SMC with your GP32 as FAT12, NEVER FORMAT WITH A CARD READER UNDER WINDOWS as FAT16 OR FAT32.
  6. O

    GP32 Timing Problem Or Is My Code To Slow?

    Your problem is not a clockspeed issue. GP32 is fast enough to output all these sprites on screen without problems. I'm pretty sure it has something to do with your backscreen as stated by Mr. Mirko. And just a little note: why don't you use 2 nested for loops instead of your difficult to read...
  7. O

    GP32 Subroutines Returning A String

    As Flavor, I have also a FileSelector that you can find in the sources of my OKF Font Tester. OKF Font Tester Source It is highly configurable and makes use of OKF Fonts.
  8. O

    GP32 Gptextout Question

    GpTextOut() prints a zero ended string. What you want to print is a char. Declare a char array of length 2. Put your char in the first position and the '\0' character in the second. Call GpTextOut() with this array. Did you know that my OKF Font Engine already does that for you and a lot of...
  9. O

    GP32 Damn Crash!

    mithris is right, but I think you have another error: change F_HANDLE *img; to F_HANDLE img; And if works the first time, it's because you are lucky and you are not accessing memory allocated by other sections of the program. But the second time you are accessing memory allocated by...
  10. O

    Yes! My Gif Worked! (may Be New Sig If It's Ok)

    Don't know this game, but Steiner is one of the familly names found in the Battletech book series. Don't know if I'm in the good way... :huh:
  11. O

    GP32 For Testing How Accurate Is Geepee32?

    Puzzle Mix was developped using Geepee, and it works perfectly in it, except for sound and some timing issues. Then I switched to VC because I needed a debugger to do Animings. I had to prepare a compatibily module because some functions don't want to work correctly. Now I only use VC to...
  12. O

    Anyone Who Uses An Smc Reader, I Need Help.

    I use a Transcend 7in1 card reader and had some problems with my SMC card. Now, since I found the way to do it, I never had another problem. I use the reader with SMC and CF cards. If you want to be sure that Windows has saved all the data correctly on the card, always execute the Eject (...
  13. O

    Sources Of Okf Font Engine

    Oh, I see, you are trying to build the project with VC. I thought that nobody used these and did not include some additional files. Here are the missing files. The archive follows the same structure as the first archive.
  14. O

    GP32 Okf Font Engine Sources Released

    Find them in the Beta Testing forum. Oankali
  15. O

    Sources Of Okf Font Engine

    Yes, here there are, the sources of the OKF Font Engine and other sources needed by OKF Font Tester. There is even a configurable file selector that I’m sure you will like. The documentation is not yet finished, but I think programmers can start working with that. Some commentaries are in...
  16. O

    Font Creator

    Yes, in fact all fonts in OKF Font Tester are common TT fonts.
  17. O

    Font Creator

    Hi, I'm Oankali, the programmer of OKF Font File Format. I wanted to say that the fonts are bitmap fonts and not vectorial. At the beginning I wanted to work directly with TrueType fonts and managed to port FreeType 2.0 to the gp32. If anybody is interested I can send him the demo .fxe I made...
  18. O

    GP32 Player Avatars In Darts

    And me, and me :)
  19. O

    GP32 Simple Gp32 Tracker Project?

    What you need it's just to program a MOD editor. You don't need to program all that mixing routines your are talking about. Here is how I see things: - An editor to edit your tracks, load samples, setup properties (timings...), save MOD files, etc... - Once you press PLAY in your editor, it...
  20. O

    GP32 Gpfontmaker 2.0 W.i.p

    If you want to see and an example, visit this link: Example at GP32Spain As you can see Daz_Genetic it's a variable pitch font, also called proportional font. And Robert_John_Shepherd, if you could send me save file *.fmk of an example of the problem you are speaking about, it would be nice...
Back
Top