Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

I noticed that turbo.scm does (getenv "APPDIR") and assumes the result is a string. I did not have this variable set at all, so getenv returns #f and the program crashes. As a workaround I launched the game like: APPDIR="" guile turbo.scm

If you do (or (getenv "APPDIR") "") or something that should take care of this problem.

For anyone on Guix, you can run the game from the source directory like so:

APPDIR="" guix shell guile guile-chickadee -- guile turbo.scm

Deleted 45 days ago

Thanks for letting me know. I've now fixed this issue on my `main` branch.