Search results

  1. S

    Changing Clock Speed

    Hey Been trying to figure out how to change the clock speed for the GP2X , but even when I directly copy and paste the code from online tutorials / Squidges' function in 'PocketSnes' ( thanks , by the way , I'm still very new at this , but there's some very interesting looking code in there I'm...
  2. S

    Image Transparency In Sdl

    Hey Have been experimenting with the following for image transparency SDL_SetColorKey(screen, SDL_SRCCOLORKEY, SDL_MapRGB( screen->format, 0x00, 0x00, 0xff )); However , it really slows things down. Any quicker way of doing image transparency with SDL? It also doesn't seem to work quite...
  3. S

    Passing Linked Lists Into Functions

    Hey I've set up some linked lists in a program i'm working on , but am having problems using functions with them. The linked lists work fine as long as they stay in the main function : so they're not at fault struct node { int x; int y; node *next; }; is the linked list...
  4. S

    Moving An Image Around With Sdl

    The following code will move an image around the screen , but , for some reason , the movement is quite jerky : often I'll push the stick all the way down , but the image wil not move : so I have to move it away , and back again before it'll register. I've checked the GPX2 with some other...
  5. S

    Bloodshed Now Crashing Pc

    Help I'm using the Gamepark Holdings Software Developer's Kit verson of bloodshed : and for months all worked fine. Now , for no reason I can figure : when I try to compile code for GP2X mode , my monitor goes blank , and the PC stops responding. I have to reboot. Still works fine for win mode...
Back
Top