diff --git a/src/main/UIElements/UIColorPicker.cpp b/src/main/UIElements/UIColorPicker.cpp index 9eaf31f..ec31927 100644 --- a/src/main/UIElements/UIColorPicker.cpp +++ b/src/main/UIElements/UIColorPicker.cpp @@ -16,8 +16,9 @@ UIColorPicker::UIColorPicker(std::string imagePath, std::string borderPath) { // For a save small overlap this->borderSP.scale(0.97, 0.97); - this->releaseSoundBuffer.loadFromFile(RESOURCE_PATH "test_sounds/air_gun.wav"); + this->releaseSoundBuffer.loadFromFile(RESOURCE_PATH "test_sounds/softair.wav"); this->releaseSound.setBuffer(this->releaseSoundBuffer); + this->releaseSound.setPitch(1.5); } UIColorPicker::UIColorPicker(sf::Image image, std::string borderPath) { diff --git a/src/resources/test_sounds/softair.wav b/src/resources/test_sounds/softair.wav new file mode 100644 index 0000000..fa8ceb1 Binary files /dev/null and b/src/resources/test_sounds/softair.wav differ