Search results

  1. D

    Gp32z.com Gp2x

    Mine arrived today so they seem to be moving along now.
  2. D

    GP32 Windows Batch File

    Wouldn't it be easier to have your project makefile conditionally rebuild the appropriate code, make your new SMC file and start geepee32? This is what I always did and it made testing a lot more convenient.
  3. D

    GP32 Include File For C++

    They are not included in the other header files.
  4. D

    GP32 Gp32 Coding Under An Ide???

    I am not sure why this would be a problem. Can you elaborate? Platform?
  5. D

    GP32 Mr.mirkos Sdk Replacement

    I used it in 16-bit mode for gpPaint fairly extensively. Perhaps you could let us know what kind of problems you are having more specifically?
  6. D

    GP32 I Found A Book...

    It has some useful information on the way that a side-scroller is contructed overall. However, it will not teach you how to develop code, nor will the code be directly useful on the gp32.
  7. D

    GP32 Fseek

    It is because only the functions in the library that are used in your program are linked in. So as the linker is going it makes a list of the functions it needs to find. As it goes through the libraries, it finds these functions, links them in and removes them from the list. So, if libmirko...
  8. D

    GP32 Fseek

    You need to make sure that libmikmod is before libmirko in the library path. Otherwise when it links libmirko in it doesn't grab the smc_fseek() object code.
  9. D

    GP32 Mr.mirkos Sdk Replacement

    It does work. Most versions I have tried work. I use 0.43 on a regular basis with no problems. How are using GeePee32 to launch the examples? EDIT: Interesting, I just upgraded to the latest version of Mirko's SDK and it doesn't work anymore.
  10. D

    Mythic Chess

    Hmm...can someone with a BLU+ try this one and let me know if it works? BTW: I should warn you that I am on the road and unable to test so I haven't tested this one at all. But it should work.
  11. D

    Mythic Chess

    I have tried several times and haven't had a problem. If you PM me your email address I will send you the fxe file unzipped.
  12. D

    Mythic Chess

    Damnit! I thought was fixed in this release.
  13. D

    Mythic Chess

    In what way?
  14. D

    GP32 How To Save Screen As A 8bit Bmp Files

    Which SDK are you using? EDIT: Nevermind I checked and I only have code to save a 16-bit BMP. It is pretty easy to save a BMP though. Just make sure that you end all the lines on a 4 byte DWORD. (Although this should not be an issue if you are saving the whole framebuffer.) If you run into...
  15. D

    Mythic Chess

    Mythic Chess 0.7 Released Changes: Implemented Pawn Promotion Added the ability to load custom pieces and boards from the SMC dynamically Bug Fix: Skill level fixed(I think) Features: Full implementation of Chess rules The ability to optionally undo your last move if it was poor Play either...
  16. D

    Mythic Chess Problem

    Of course, after trying to get a pawn to the other side of the board for about an hour it occurs to me that Mythic Chess supports two player mode. In two player mode I can just move my piece straight across the board. So, as it turns out, I am a dumbass. Thought I would share.
  17. D

    Mythic Chess

    I hope to have a new version out tonight or tomorrow that has the level stuff fixed as well as pawn promotion. I will need help testing it though. I have trouble telling when it is playing better or worse since I am a terrible chess player.
  18. D

    GP32 Printf In A Gp Program...

    Actually, I think it will cast 3.65 to an integer which is likely some very large decimal, and then print that. But I think it was just a typo on Rattboi's part.
  19. D

    Vic-20 Emulator

    How different is the VIC-20 from C64?
  20. D

    Mythic Chess Problem

    Of course, but that sounds like a whole lot of work just to test pawn promotion :)
Back
Top