Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+5)

Could you please update your Linux version to take any version of libssl and libcrypto. (Have it look for libcrypto.so/libssl.so without a version number). The game works with updated versions, but refuses to launch unless linked as the specific 1.0.0 version in /usr/lib.

(3 edits)

Thank you! And seconded, please fix. Specific error for dev: 

./NEW_CSD2_PS4Steam: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory

Same for libssl. Additionally the game seems to run at least 100x too fast.

Fix for others:

```

cd /usr/lib

sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.1 libcrypto.so.1.0.0

sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.1 libssl.so.1.0.0

```