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

It seems that simply adding

LD_PRELOAD=/lib64/libgmodule-2.0.so

environemnt variable works for me.

(also remember installing ALSA relavant package if you encountered alsa relavant problems)

from link:

https://github.com/project-slippi/Ishiiruka/issues/323

(+2)

My library was in a different location. I found it with this:

```

$ sudo find / -name libgmodule-2.0.so

...

/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so

...

```

Then launched the game with this:

```

$ LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so ./OneShot.AppImage

```

Thanks! Got the same error message on Ubuntu 22.04.3, adding that environmental variable fixed the issue.

(1 edit) (+1)

On Debian 12 here. I was able to get it working without the full path as:

LD_PRELOAD=libgmodule-2.0.so ./OneShot.AppImage
(1 edit)

Thanks! 

edit: the game launches. But after the first login to the PC in the bedroom, it crashes.

I managed to get it work from Lutris as advised below