Recent content by pertch

  1. P

    GP32 Problem With Tutorial Program

    Not ever using Allegro.. I can tell you what those errors mean.. for one.. it says that textout_centre is deprecated. That means 'for now' it is there and works, but don't expect that function to be there in the future, so you should generally use a newer function that accomplishes that task...
  2. P

    Loading Image Files

    ............ You blit them. You copy one area of memory (the source -- which is where your particular image data is stored) to another area of memory (the destination -- an offset in the framebuffer).
  3. P

    Question About Collisions

    I don't know what source you're modifying but collision detection can be easy and it can be difficult. For the sake of simplicity, I assume that you're doing 2d collisions and not 3d. I can't help you with potential functionality built-in to the code to use, but I can help I suppose. I would...
  4. P

    Omg This Is Pissing Me Off

    Check your inbox, surely you have some emails regarding pills to enlarge your shortcomings.
  5. P

    GP2X Timing A Game Loop

    Use gettimeofday() or the gp2x's timer. There's plenty of information on how to use it in the docs, check out page 47 in MMSP2 Databook.
Back
Top