From e56c3cddd8fcf8c852ee7f3c8dc49df9623a94d0 Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 4 Dec 2004 09:26:39 +0000 Subject: (svn r925) Use sound enums Also play the correct sound when a toyland road vehicle breaks down --- players.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'players.c') diff --git a/players.c b/players.c index 2f0c193f1..4cfd5522c 100644 --- a/players.c +++ b/players.c @@ -592,9 +592,9 @@ void PlayersYearlyLoop() ShowPlayerFinances(_local_player); p = DEREF_PLAYER(_local_player); if (p->num_valid_stat_ent > 5 && p->old_economy[0].performance_history < p->old_economy[4].performance_history) { - SndPlayFx(0x28); + SndPlayFx(SND_01_BAD_YEAR); } else { - SndPlayFx(0x27); + SndPlayFx(SND_00_GOOD_YEAR); } } } -- cgit v1.2.3-54-g00ecf