Only play message sound in normal playing mode, fixes #2125

This commit is contained in:
Gymnasiast 2015-11-08 11:07:35 +01:00
parent 15f6f9b66a
commit 7a510f76e2
2 changed files with 3 additions and 1 deletions

View File

@ -50,6 +50,7 @@
- Fix: Underflow in Heartline Twister ratings (original bug).
- Fix: Map window now display the usable map size, not the technical one (original bug).
- Fix: TD4 River Rapids will now have the correct seat colour (original bug).
- Fix: Message sound will no longer play in the editor modes (original bug).
0.0.2-beta (2015-06-21)
------------------------------------------------------------------------

View File

@ -82,7 +82,8 @@ static void news_item_tick_current()
{
int ticks;
ticks = ++news_item_get(0)->ticks;
if (ticks == 1 && !(RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_FLAGS, uint8) & 1)) {
// Only play news item sound when in normal playing mode
if (ticks == 1 && (RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_FLAGS, uint8) == SCREEN_FLAGS_PLAYING)) {
// Play sound
sound_play_panned(SOUND_NEWS_ITEM, RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_WIDTH, uint16) / 2, 0, 0, 0);
}