Recent content by deadlychicken22

  1. D

    Tigris?

    Can you take a look at this open source project development documentation web site and let me know if it is legitimate? http://www.tigris.org/ I'm looking for some new templates to use for managing projects and this looks like good stuff. Does anyone know about this? Is it good?
  2. D

    Extraterrestres Update

    Thanks! I have plans for more games, but school and life come first. School is coming to a close but then I am going to spain with my spanish class. Life is crazy as usual. I don't know what is causing the sound problems, the code looked fine to me. Honestly, I haven't looked at it for a couple...
  3. D

    Extraterrestres Update

    I have been very busy with school and haven't had time to work on extraterrestres or even play my gp2x. However, awhile back I got extraterrestres to work with firmware 2.0 by removing the sound code. I'm not sure why this works, but it does. I did not release it because I had hoped to get the...
  4. D

    Which Is Better: Pong Or Pacman?

    I believe that is one of the biggest problems with politics in the USA, we have a two party system. Like you, I don't agree with either party. Libertarianism seems to make the most sense to me, more freedom both socially and financially. Bush sucks, but I don't believe the democratic BS...
  5. D

    Gp2x + Cold Temperatures

    I live in Minnesota but I was busy playing Gears of War inside (although it is still somewhat cold inside; it's a way to save money on the heating bill :D ) I played my gp2x outside while camping out for the wii and it performed wonderfully. However, the temperature at that time was just...
  6. D

    Funny But Sad Need Help

    [nothing here...]
  7. D

    Finally Got Around To Programming Again....

    is this what you want: -lSDLmain -lSDL -static -lSDL_mixer -lSDL_ttf -lSDL_image -lvorbisidec -lfreetype -ljpeg -lpng12 -lz -lm -lSDL -lpthread -lmad That is the one I'm using. What I was wondering is if there is another that is also easy to setup that may fix these problems.
  8. D

    Finally Got Around To Programming Again....

    When compiling the sdltest program, I get the following error: [Linker error] undefined reference to `rotozoomSurfaceXY' To get around this temporarily, I just commented off the 'rotozoom test' section of the code. It then compiled fine but when I play it on my gp2x all I get is a blank...
  9. D

    Finally Got Around To Programming Again....

    I downloaded the sdl libs linked to earlier in this topic (http://archive.gp2x.de/cgi-bin/cfiles.cgi?0,0,0,0,19,1875) and replaced the old ones with them. If these aren't the right libs, where do I get the right ones?
  10. D

    Finally Got Around To Programming Again....

    I guess I'm not 100% sure but based on the tests I've done it is that line. Here's what I've done: int main(int argc, char* args[] ) { printf("Testing serial usb cable connection....."); //Initialize all SDL sub systems if( SDL_Init( SDL_INIT_EVERYTHING ) == -1 ) { return 1; }...
  11. D

    Finally Got Around To Programming Again....

    PCM, I believe. However, as I said above, it is the initializing of sdl_mixer and not the loading of the files that is freezing. I have tried commenting the code for the loading of the sound and it still freezes. However, when I comment the code for the initialization of sdl_mixer, it doesn't...
  12. D

    Finally Got Around To Programming Again....

    No I haven't tried .ogg or .mp3 as the loading of the sound file is not the problem. It is the initializing of sdl_mixer that is causing the freezing.
  13. D

    Finally Got Around To Programming Again....

    Found a topic about the same problem here (it's about a year old...) Anyways, I'm going to download those libs and try them out. I'll let you know how it goes. EDIT: I tried it with the new libs and had the exact same result. No problems compiling, but it freezes when it reaches that line of...
  14. D

    Finally Got Around To Programming Again....

    I am statically linking. I looked at the SDL demo program and couldn't see anything very different from what I'm doing... I'm going to go play around with it a little and see what I can do. For now, here is some of my code, let me know if anything sticks out. the beginning of main: int...
Back
Top