Just wanted to mention this so it can be resolved in a future build.
The `start` file for Linux that boots the game has this line now:
[code]LIBS=$PWD/libs64[/code]
The old version had
The current version does not work if the game name has spaces in it, since it expands to eg. "LIBS=/blah/blah/my game name/libs64" but ignores everything after the first space. I believe the variable simply needs to be quoted somehow - backticks? - but I'm unsure. I simply changed it to ./ for now.