archive doesn’t seem to be working for me. anyone else able to open it?
17. Dec 2007 · 03:45 UTC
Thanks, but there seems to be a problem with the new zip file (invalid according to Vista).
lexaloffle
17. Dec 2007 · 04:30 UTC
Arg. ok — it’s fixed now.
Xenthar
16. Jan 2008 · 15:44 UTC
great game! plz expand on it!
kendall
15. Feb 2009 · 12:38 UTC
It doesn’t work on a Mac!
vicious
18. Oct 2009 · 00:06 UTC
lexaloffle, change
char *fn = “s?.wav”
to
char fn[] = “s?.wav”
the first is a pointer to a constant, the second will copy the constant to the char array. Making this change I managed to compile it on Debian (gcc -Os -lSDL -lSDL_mixer -I /usr/include/SDL – the first two “l” are Ls and the second “I” is an i. stupid font.), but I still haven’t managed to get the sound to work.
Papachabre
18. Oct 2009 · 01:04 UTC
Awesome but a bit short. Maybe players will figure out how to make their own levels and we’ll see some player packs emerge…
Kana
24. Oct 2009 · 11:27 UTC
^^ The game is fun but I would have liked a save function. I keep dying on level 3 (XD) and have to keep starting over.
char *fn = “s?.wav”
to
char fn[] = “s?.wav”
the first is a pointer to a constant, the second will copy the constant to the char array. Making this change I managed to compile it on Debian (gcc -Os -lSDL -lSDL_mixer -I /usr/include/SDL – the first two “l” are Ls and the second “I” is an i. stupid font.), but I still haven’t managed to get the sound to work.