Search results

  1. yaustar

    Pandora Compiling On The Pandora Itself

    I probably find it too tedious on a small screen personally for my larger projects but I can imagine myself writing small games in a scripting language like Python or Lua since they don't need compiling.
  2. yaustar

    Suggested Reading

    Plenty of links here: http://www.homebrew-illuminati.co.uk/index.php?topic=147.0 The free eBooks linked there are very good.
  3. yaustar

    I Have Just Ordered My Gp2x F200 From Gp2x.co.uk

    Have you tried contacting them again? You still have 4 days left before the 7 days are up.
  4. yaustar

    Massive Gp2x Feature In Gamestm Magazine (issue 71)

    Oops, my bad. Ah well, they won't know ;) I think it is just the standard knee jerk reaction, maybe it will start to settle in as they dwell on it a bit?
  5. yaustar

    Massive Gp2x Feature In Gamestm Magazine (issue 71)

    The interview definitely caught the attention of a few people: http://www.gamedev.net/community/forums/to...topic_id=497187
  6. yaustar

    Massive Gp2x Feature In Gamestm Magazine (issue 71)

    Just finished reading the article, covers all the bases and opinions of the console. Good job :). Side note: "The first developer units are already out there, but the first unites for casual users should appear in July" - Craig Rothwell :)
  7. yaustar

    Need Help: Problem With Variable Arrays In Classes

    Good spot Parkydr. To prevent this problem in the future, look at the use of the 'explicit' keyword. CODE class BG{ public: explicit BG (int); void imgload(char *path); SDL_Surface *BG_gfx; SDL_Rect *Pos; SDL_Rect Frame; }; Again, I recommend using std::vector...
  8. yaustar

    Need Help: Problem With Variable Arrays In Classes

    Side note, you have a memory leak in the class of BG (not freeing allocated memory). Consider using std::vector instead. I can't see anything distinctly wrong with the code. Can you provide a screenshot of the result that you are currently getting?
  9. yaustar

    Samsung Pandora?

    GBAX's shop and the address for OpenPandora are within 2.2 miles of each other: http://maps.google.com/maps?f=q&hl=en&...e=UTF8&z=14
  10. yaustar

    Gp2x Review - In-depth At Pause Gaming

    However, the DS has better 2D graphics hardware and a 3D chip.
  11. yaustar

    Will Gpsp Be Improved For Pandora?

    IIRC, GPSP was GPL'ed and Takka broke it despite requests otherwise.
  12. yaustar

    Our Other Non-pandora Project, Iphone Dpad!

    Out of interest, will it work with the iTouch?
  13. yaustar

    Non-gaming Apps

    In that respect, I have just started to use Orb on my PC at home and the prospect of being able to watch TV and/or my video collection from anywhere that has a decent Wifi connection and on a device that supports Flash is great. :)
  14. yaustar

    Python And Pygame

    We do have Python and PyGame for the GP2X, so I would hope the chances are pretty good to get this on the Pandora. It is just a matter of who and when.
  15. yaustar

    Having A Bit Of Trouble Compiling

    You are missing a library from the link line, could be SDL_Image. Edit: Hm.. I think I may have screwed up the order of the libraries for the GP2X. This: CODE -static -lSDL_gfx -lSDL_ttf -lfreetype -lSDL_image -ljpeg -lpng12 -lz -lSDL_mixer -lvorbisidec -lmikmod -lmad -lSDL -lgcc -lm -lc...
  16. yaustar

    Pandora A,b,x,y Button Placement Not Emu Friendly?

    Isn't the button layout a copyright issue?
  17. yaustar

    Having A Bit Of Trouble Compiling

    Change this line: CODE int SDL_main( int argc, char* argv[] ) to CODE int main( int argc, char* argv[] ) That should fix the GP2X build. I don't think SDL_BlitSurface checks for NULL images, you might want to do a NULL check there. CODE int GameLevel::initGrid (int x, int y) { // Loads...
  18. yaustar

    Will You Call Off Of Work When Your Pandora Comes?

    Hell, I am going to get it delivered to my work address :)
  19. yaustar

    Job Searching - I'm Doing It Wrong

    This is what I did to get my job: Find the company's website. Look for the Jobs/Careers section. Search for an applicable role. If none exists, find the contact telephone number and ask for HR and then if a suitable role exists (take a note of the name and email of the person you are talking...
  20. yaustar

    Two Questions

    Is there a particular reason why you need to use Open2x over DevkitGP2X? Both have SDL libraries.
Back
Top