Hi Jeremy,

EDIT: Thanks for that:

- You don't have OpenGL installed mate! sudo apt-get install opengl
I didn't know what I should install for OpenGL

BTW, After reading on the net, I whipped up this little script as a test (placed in /usr/bin)

rungame.sh

Code:
#!/bin/sh
DIR=$(/usr/bin/pwd)
cd /mnt/win/Lazarus/Projects/myprojects/mygame/bin
./mygame
cd $DIR
I can now run a game (yours ATM) from any directory, and it still works

Maybe it will help you too...

cheers,
Paul