1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 04:53:12 +01:00

Play sound when message first appears, not later

This commit is contained in:
Michał Janiszewski
2015-07-31 22:37:28 +02:00
parent 1d86e2b6cd
commit 8d80e12af2

View File

@@ -84,7 +84,7 @@ void news_item_init_queue()
static void news_item_tick_current()
{
int ticks;
ticks = news_item_get(0)->ticks++;
ticks = ++news_item_get(0)->ticks;
if (ticks == 1 && !(RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_FLAGS, uint8) & 1)) {
// Play sound
sound_play_panned(SOUND_NEWS_ITEM, RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_WIDTH, uint16) / 2, 0, 0, 0);