Search results

  1. A

    Sound Delays :s

    OK, i'll give that a try, cheers. But still, will people need the libs I've used?
  2. A

    Sound Delays :s

    Hmmm....I swear I'd tried that already! Oh well :) Thanks! Also, bit off topic but will other people need specific SDL libraries on their GP2X (such as SDL_mixer) to run my game? I'm fairly sure i'm linking statically as my .gpe is up to nearly 6mb :s
  3. A

    Sound Delays :s

    A bit of searching has informed me that the GP2X can get temperamental with SDL_Mixer if the audio specs aren't set up properly. Now, this is pedantic but i'm writing a shooting game and currently there's about a 500ms delay between pushing the button and the 'fire' sound playing. This is...
  4. A

    Sdl_ttf Oddities

    Would you like your kisses mailed to you? ;)
  5. A

    Sdl_ttf Oddities

    Ok, that may have done the job but I don't have a back buffer set up and this pretty much kills my display. What would be the best way to get up a back buffer? Where & when do I need to SDL_Flip() ?
  6. A

    Sdl_ttf Oddities

    Anyone ever had any issues with this? I recently added SDL_TTF to a project I'm working on and rather oddly the text string flashes from the colour I define to black but only when it's overlayed on a sprite. When I just render it to an SDL render screen it seems fine. SDL_Color...
  7. A

    Devc++ "all In One" Does Not A Lot?

    I think that may have done the trick! I've certainly got CodeBlocks working now so i'll just keep my fingers crossed and hope it lasts :D Thanks for your help!
  8. A

    Devc++ "all In One" Does Not A Lot?

    /* Initialize SDL */ if (SDL_Init (SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_JOYSTICK) < 0) { fprintf (stderr, "Couldn't initialize SDL: %s\n", SDL_GetError ()); exit (1); } atexit (Terminate); SDL_ShowCursor(SDL_DISABLE); /* Set 320x240 16-bits video mode */ screen =...
  9. A

    Devc++ "all In One" Does Not A Lot?

    Ok, so I'm absolutely rubbish at Linux and am a total VS2005 fanboi. After failing horribly to get VS setup for .gpe compiling (yes, I tried the Wiki several times) I gave up and tried to use the DevC++ 'starter kit' in the official SDK. Because it's got really nice switching between win/gp2x...
Back
Top