Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

I made it to the "Find the treasure level".

I enjoyed how athletic Remilia is, and the Shuriken is a lot of fun, but I wish there were fewer "leaps of faith" where you have to jump down without seeing the floor.

It was pretty frustrating, since dying takes you back to level 1. Since the game is fun to play, I'll probably give it another go, but I wanted to post the fix below ASAP.

Fix for running the Linux version on Ubuntu 22.04

Trying to run the Linux version, I got the following error:

SDL image support <= 2.0.4
at: /usr/include/dmd/phobos/std/exception.d:516 _D3std9exception__T7bailOutHTC9ExceptionZQwFNaNfAyamMAxaZNn [0x5556887bb35a]
at: /usr/include/dmd/phobos/std/exception.d:437 pure @safe bool std.exception.enforce!().enforce!(bool).enforce(bool, lazy const(char)[], immutable(char)[], ulong) [0x5556887bb2d2] 
at: ../atelier/source/atelier/render/window.d:86 void atelier.render.window.createWindow(const(atelier.core.vec2.Vec2!(int).Vec2), immutable(char)[]) [0x555688850f1d] 
at: ../atelier/source/atelier/common/application.d:68 void atelier.common.application.createApplication(atelier.core.vec2.Vec2!(int).Vec2, immutable(char)[]) [0x55568882bcb1] 
at: source/app.d:35 void app.setupApp(immutable(char)[][]) [0x5556887a5feb] 
at: source/app.d:18 _Dmain [0x5556887a5ec7]

I have libsdl 2.2 and 1.2 installed. To make it work on Ubuntu 22.04, I had to install the packages

  • libsdl2-image-dev

  • libsdl2-ttf-dev

  • libsdl2-mixer-dev

These packages install the 2.0.4 versions, which are compatible, as indicated by the error message.

(+2)

The eternal frustrating problem of dependencies on Linux. Next time, I should find a way to ship a game with its libraries or using an appimage.