From 747289166385bb4ed74da3ecac74938cc83f5821 Mon Sep 17 00:00:00 2001 From: Pieter Hulshoff Date: Sun, 24 Jul 2016 09:18:31 +0200 Subject: [PATCH] Fixed playing of select sound when starting a game. --- RetroFE/Source/Graphics/Page.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/RetroFE/Source/Graphics/Page.cpp b/RetroFE/Source/Graphics/Page.cpp index a994361..48fb52d 100644 --- a/RetroFE/Source/Graphics/Page.cpp +++ b/RetroFE/Source/Graphics/Page.cpp @@ -769,6 +769,11 @@ void Page::launchEnter() { (*it)->launchEnter(); } + + if(selectSoundChunk_) + { + selectSoundChunk_->play(); + } } void Page::launchExit()