Recent content by Dalto

  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...
Back
Top