Search results

  1. F

    Videos Of Gp2x Software In Action

    Our demo from Assembly 2006: Pulque by Hedelmae
  2. F

    Gp2x Demo Competition: 750$ prize money

    Err, afaik Live! are French. Hedelmae is Finnish and we haven't said a thing :) ps. Check out our Assembly 2006 demo.. Pulque by Hedelmae
  3. F

    Gp2x Demo Competition: 750$ prize money

    Okay, it seems that the FW 1.x libs are not compatible with FW 2.x libs, which Debris uses. Good to know.. Just update your firmware? :)
  4. F

    Divx Contains Adware (free Version)

    This was true two years ago.. current versions (5.2 onwards) do not have adware. And how is this GP2X related anyways?
  5. F

    Are There Gp2x "hacker Demos" ?

    Not many, actually only one decent which was originally made for GP32 but a GP2X port exists. Led Blur. Hopefully there'll be more and better ones :)
  6. F

    GP2X How Do You Change Surface Color?

    How about this: int clr_to = 0xFFFF; int clr_from = 0x0000; int screensize = 320*240; for(int i = screensize; i>0; i--) { if(((unsigned short*)surface->pixels)[i] == clr_from) ((unsigned short*)surface->pixels)[i] = clr_to; } Not tested..
  7. F

    GP2X Why Is It Sdl_mixer So Slow Playing Mod Files?

    Try using mikmod directly. SDL_mixer uses it internally anyways.
  8. F

    Why Do We Need Linux

    Umm, why do you have to reboot the GP2X between copying new builds? I haven't had any problems like this..
  9. F

    GP2X Gp2x App Shows Black Screen Then Returns To Menu

    Try outputting stdout and stderr to a file: ./yourApp.gpe >/mnt/sd/debug.txt 2>&1 If it is a library problem a static build should help.
  10. F

    GP2X Using Sdl_mixer

    If all you want to do is play mods, try using mikmod directly. SDL_mixer uses it internally anyway. I only got choppy sound with SDL_mixer but module playing with mikmod works fine :) There is a good example in mikmod documentation.
  11. F

    Something For The Holidays

    Download our new minigame from: http://fragment.stc.cx/gp2x/ Have fun :)
  12. F

    GP2X Using Libpng

    The error message means that the linker does not know where to find the library, so you need to add -lpng. Also, using a Makefile would make thing a lot easier.
  13. F

    GP2X Working Sdl Libraries

    thanks theoddbot, finally got the SDL_mixer working (plays mods atleast)
  14. F

    GP2X Problem In Ld Stage Of Sdl-heretic Compile

    Actually I meant editing the files and fixing the directories defined in them.. Seems your makefile is missing some libraries for the linker. -lSDL, -lSDLmain etc.
  15. F

    GP2X Problem In Ld Stage Of Sdl-heretic Compile

    The problem is caused by libpthread.so and libc.so in /sysroot/usr/lib. The files are in plain text. Just fix the paths (remove em). This is not a problem when building static binaries since those files are not used.
  16. F

    GP2X Integer Based Maths

    I also suggest reading 3DICA. Probably not the best tutorial around but contains all the basic info you need.
  17. F

    GP2X Integer Based Maths

    Some useful macros: http://members.aol.com/form1/fixed.htm
  18. F

    Two Questions

    Can the batteries be changed on-the-fly if the PSU is connected?
  19. F

    Gp2x Review

    It is the internal flash. NAND refers to the type of logic gate used in the flash chip.
  20. F

    GP2X Arm And Thumb. Which To Use?

    Nah, just learn how to use fixed point arithmetic. It is fast and accurate enough.
Back
Top