There is an alpha hack which is around that makes Return To Castle Wolfenstein Enemy Territory play with ALSA by replacing standard sound system functions in runtime as aoss won't work for ET. I found this necessary when wanting to run TeamSpeak 2.XX at the same time.
It's located at http://nullkey.ath.cx/~stuff/et-sdl-sound/
Simply download the latest tarball http://nullkey.ath.cx/~stuff/et-sdl-sou ... und.tar.gz
1. Extract
2. Copy et-sdl-sound.so file to /opt/enemy-territory/
3. Open your favourite text editor and add the following lines and save as et_sdl_sound.sh:
- Code: Select all
#!/bin/bash
export ETSDL_SDL_LIB="libSDL.so"
export SDL_AUDIODRIVER="alsa"
cd /opt/enemy-territory/
LD_PRELOAD="/opt/enemy-territory/et-sdl-sound.so" ./et.x86 $*
4.
- Code: Select all
chmod +x et_sdl_sound.sh
5.
- Code: Select all
./et_sdl_sound.sh


