Search results for query: *

  • Users: BadKarma
  • Content: Threads
  • Order by date
  1. B

    Pond2x

    Pond2X is my first game for GP2X, it is Toppler (Perestroika)-style game, I hope you'll like it. :D screenshots : http://student.fiit.stuba.sk/~kajan04/Pond2X/001.JPG http://student.fiit.stuba.sk/~kajan04/Pond2X/002.JPG http://student.fiit.stuba.sk/~kajan04/Pond2X/003.JPG download ...
  2. B

    Writing To File Problem

    I am making a simple game - I have vector of structures and I want to write values to simple text file. end of my code : ofstream fout; ... ... fout.open(HISCORE_PATH); for (int i = 0; i<=9; i++) { fout<<hiscore[i].score<<endl; fout<<hiscore[i].name<<endl; }...
  3. B

    Problem With Sdl_gfx

    I'm trying to compile simple program for GP2X - I'm using GP2XSDK in Windows with DevCpp This program only draws 2 lines (with SDL+SDL-gfx), waits few seconds and finishes. #include <stdio.h> #include <stdlib.h> #include <iostream> #include <cstring> using namespace std; #include "SDL\SDL.h"...
Back
Top