SuperTux
Posted: Wed Nov 28, 2018 11:30 am
Hi All,
There are sound issues in the default package of SuperTux on Linux PPC. I was able to solve this issue with:
vi SuperTux-v0.5.1-Source/src/audio/ogg_sound_file.cpp:
The problem was, that this source code doesn't detect our BIG ENDIAN platform. I added int bigendian = 1; after #else and after compiling, the sound and music work without any problems.
I uploaded it for testing today. You can start it with ./run_game.sh.
Download: supertux-0.5.1-linux-glibc2.23-ppc.tar.gz
Screenshot:

Cheers,
Christian
There are sound issues in the default package of SuperTux on Linux PPC. I was able to solve this issue with:
vi SuperTux-v0.5.1-Source/src/audio/ogg_sound_file.cpp:
Code: Select all
#ifdef WORDS_BIGENDIAN
int bigendian = 1;
#else
int bigendian = 1;
#endif
I uploaded it for testing today. You can start it with ./run_game.sh.
Download: supertux-0.5.1-linux-glibc2.23-ppc.tar.gz
Screenshot:

Cheers,
Christian