diff --git a/src/SSVOpenHexagon/Core/HexagonDialogBox.cpp b/src/SSVOpenHexagon/Core/HexagonDialogBox.cpp index 9da0640fa..cdc72415a 100644 --- a/src/SSVOpenHexagon/Core/HexagonDialogBox.cpp +++ b/src/SSVOpenHexagon/Core/HexagonDialogBox.cpp @@ -119,7 +119,7 @@ void HexagonDialogBox::drawDialogBox() void HexagonDialogBox::clearDialogBox() { - assets.playSound("beep.ogg"); + assets.playSound("select.ogg"); dialogFrame.clear(); dialogText.clear(); } diff --git a/src/SSVOpenHexagon/Core/HexagonGame.cpp b/src/SSVOpenHexagon/Core/HexagonGame.cpp index 74b33efd9..dc3f8f2af 100644 --- a/src/SSVOpenHexagon/Core/HexagonGame.cpp +++ b/src/SSVOpenHexagon/Core/HexagonGame.cpp @@ -371,6 +371,9 @@ void HexagonGame::newGame(const std::string& mPackId, const std::string& mId, if(!firstPlay) { runLuaFunction("onUnload"); + assets.playSound("restart.ogg"); + } else { + assets.playSound("select.ogg"); } runLuaFunction("onInit"); @@ -449,6 +452,7 @@ void HexagonGame::sideChange(unsigned int mSideNumber) mustChangeSides = false; + assets.playSound("increment.ogg"); runLuaFunction("onIncrement"); } diff --git a/src/SSVOpenHexagon/Core/MenuGame.cpp b/src/SSVOpenHexagon/Core/MenuGame.cpp index 53d52dc0d..621036877 100644 --- a/src/SSVOpenHexagon/Core/MenuGame.cpp +++ b/src/SSVOpenHexagon/Core/MenuGame.cpp @@ -789,7 +789,7 @@ void MenuGame::downAction() } void MenuGame::okAction() { - assets.playSound("beep.ogg"); + assets.playSound("select.ogg"); touchDelay = 50.f; if(state == States::EpilepsyWarning) @@ -947,8 +947,6 @@ void MenuGame::createProfileAction() void MenuGame::selectProfileAction() { - assets.playSound("beep.ogg"); - if(state != States::SMain) { return; @@ -958,20 +956,18 @@ void MenuGame::selectProfileAction() state = States::MWlcm; return; } - assets.playSound("beep.ogg"); + assets.playSound("select.ogg"); enteredStr = ""; state = States::SLPSelect; } void MenuGame::openOptionsAction() { - assets.playSound("beep.ogg"); - if(state != States::SMain) { return; } - assets.playSound("beep.ogg"); + assets.playSound("select.ogg"); state = States::MOpts; }