X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/micropolis/blobdiff_plain/851812f3fc226d30b4dc26ba147977e9511a82ee..403895917c093bdb88836e8e1694e937e1dd966e:/res/sounds/player?ds=sidebyside

diff --git a/res/sounds/player b/res/sounds/player
index af26836..48e05d7 100755
--- a/res/sounds/player
+++ b/res/sounds/player
@@ -2,11 +2,14 @@
 
 PLAYER=
 
-if [ -x "`which aplay`" ]; then
+if type -a aplay &>/dev/null; then
 	PLAYER=aplay
-elif [ -x "`which play`" ]; then
+elif type -a afplay &>/dev/null; then
+	#afplay is shipped with OS X Leopard
+	PLAYER=afplay
+elif type -a play &>/dev/null; then
 	PLAYER=play
-elif [ -x "`which mplayer`" ]; then
+elif type -a mplayer &>/dev/null; then
 	PLAYER="mplayer -nogui -nocache"
 fi