tree_cmd.c
changeset 541 e1cd34389f79
parent 507 8aa8100b0b22
child 679 e959706a3e4d
--- a/tree_cmd.c	Sat Dec 04 07:41:37 2004 +0000
+++ b/tree_cmd.c	Sat Dec 04 09:26:39 2004 +0000
@@ -382,8 +382,11 @@
 	/* not used */
 }
 
-static byte _desert_sounds[] = {
-	66,67,68,72
+static SoundFx _desert_sounds[] = {
+	SND_42_LOON_BIRD,
+	SND_43_LION,
+	SND_44_MONKEYS,
+	SND_48_DISTANT_BIRD
 };
 
 static void TileLoopTreesDesert(uint tile)
@@ -440,7 +443,7 @@
 		if (tmp == 0xC0) {
 			uint32 r;
 			if (CHANCE16I(1,200,r=Random())) {
-				SndPlayTileFx( (r&0x80000000) ? 57 : 52, tile);
+				SndPlayTileFx((r & 0x80000000) ? SND_39_HEAVY_WIND : SND_34_WIND, tile);
 			}
 			return;
 		} else {