Search results for query: *

  1. T

    Gp2x Multiplayer

    About never finding someone else with a GP2X, I have 2 friends with one :) . And I really want to avoid connecting to computers or something else to facilitate multiplayer gaming, I am thinking strictly console to console, through cables or otherwise, how to get/build them, and how to actually...
  2. T

    Gp2x Multiplayer

    Okay, it may seem like a rehash, but I would really like a centralised place or discussion about the multiplayer capabilities of the GP2X. I have searched the forums and have found no difinative answers on each avenue that could work, or the topic just gets of topic etc. I am asking about GP2X...
  3. T

    What Am I Doing Wrong?

    Thanks a lot Woogal!
  4. T

    What Am I Doing Wrong?

    thanks for the replies Squidge and Woogal! I'm not killing the menu or setting the MHtz in any way, and am just compling, copying to sd and then running from the main menu on the gp2x. Will killing the menu help? If so, how do I kill the menu (and where? is it in the main code or makefile?) or...
  5. T

    What Am I Doing Wrong?

    ...I'm doing. (BTW, this same code runs WAY to fast on my PC, like 120 frames a second or more. I load my graphics (24bit BMPs) like this: SDL_Surface* TitleScreenPic = SDL_LoadBMP("Graphics/Screen.bmp"); etc. I make my characters have a transparency like: SDL_SetColorKey(PNormal...
  6. T

    GP32 Wierd Graphics Glitch

    I am using doubble buffering as far as I know!! This is double buffering, isn't it? u16 *framebuffer[2]; framebuffer[0] = (u16*)FRAMEBUFFER1; framebuffer[1] = (u16*)FRAMEBUFFER2; gp_setCpuspeed(133); gp_initFramebuffer(framebuffer[0],16,85); and then to swap buffers: void...
  7. T

    GP32 Wierd Graphics Glitch

    Thanks so much Pea, I'll look into that! :D
  8. T

    GP32 Wierd Graphics Glitch

    ...$(LIBS) arm-elf-objcopy -O binary $(PRG).elf $(PRG).bin b2fxec -a TheMrCul -t GPRancher $(PRG).bin $(PRG).fxe install: gplink put $(PRG).fxe gpmm clean: rm -f *.o *~ Test.map *.bin *.elf I can see that -O2 is under CFLAGS, but there seems to be no way to separate it to different files!
  9. T

    GP32 Wierd Graphics Glitch

    I took away -O2 from my makefile and the problem's fixed, but I hope it doesn't slow it down too much! Wonder what it's problem is... :( Thanks for your help pea :)
  10. T

    GP32 Wierd Graphics Glitch

    Does noone know how to fix this problem?
  11. T

    GP32 Wierd Graphics Glitch

    Yeah, I searched and found the other version of the lcd code thingy, but had no effect! I'm using the latest version of mr mirko's sdk aswell. Did anyone else fix the problem another way? Thanks for your help.
  12. T

    GP32 Wierd Graphics Glitch

    Hi everyone just plodding along with my program, and all was coming along well - for a long time I've had some collision detection routines, but they had some problems. I added some if statements to it, and it seems that the GP32 is overloaded because what is appearing on the screen is not...
  13. T

    GP32 Framerates!!

    Hi everyone. Now that the graphics routines are working (largely because of the help I've recieved from generous people on this board, thanks!) I've stepped on another problem. My framerates are all over the place (on real GP32s) usually at 45-50, but shooting up to 95-100 at some spots on the...
  14. T

    GP32 Graphics In Mr.mirko's Sdk

    Right I'll give that a go too. Thanks blah. :)
  15. T

    GP32 Graphics In Mr.mirko's Sdk

    Have you had experience with the gp_fastSolidBlit() functions? Do you know how to use them? otherwise do you know where some examples on how to use memcpy() with MrMirko's graphics in mind? Thanks for your help kissbengt.
  16. T

    GP32 Graphics In Mr.mirko's Sdk

    ...of 20  {   //Get the tile number to draw and then draw it   Tile = CurrentMap[YTile + ScreenHeight][XTile + ScreenWidth];   gp_drawTiled16((u16*)RanchTiles, TransColour, TileSize, Tile,       ScreenWidth * TileSize - XPos,       ScreenHeight * TileSize - YPos,      ...
  17. T

    GP32 Graphics In Mr.mirko's Sdk

    Hi! Thanks that fixed the problem and now my program has been ported from the official SDK to Mr Mirko's one. However it's running at less than 1/2 the speed that it was before I ported it! Everything is the same except the graphics functions. Are Mr.Mirko's tile funtions slow? Or is it...
  18. T

    GP32 Graphics In Mr.mirko's Sdk

    ...just been converting my project to Mr.Mirko's great SDK, but run into problems with my tile engine. Any time I run the funtion gp_drawTiled16((u16*)RanchTiles, TransColour, TileSize, Tile, XPos, YPos, framebuffer[swapper]); it compiles fine but crashes the GP32. I read on the help html file...
  19. T

    GP32 Weird 16bit Mode

    Brilliant! Thanks!
  20. T

    GP32 Weird 16bit Mode

    Wow! I resized the image to 160 x 168 and there is no distortion! That is so weird! how do I work out 8-byte boundries? Just divide the number by 8 and if it's a whole number, it's okay? Thanks for your help!
Back
Top