summaryrefslogtreecommitdiff
path: root/src/test/testlauncher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/testlauncher.cpp')
-rw-r--r--src/test/testlauncher.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/testlauncher.cpp b/src/test/testlauncher.cpp
index 215793243..b4db8da78 100644
--- a/src/test/testlauncher.cpp
+++ b/src/test/testlauncher.cpp
@@ -99,12 +99,12 @@ int TestLauncher::testBackend() const
int TestLauncher::testSound() const
{
- sound.playGuiSfx("system/newmessage.ogg");
+ soundManager.playGuiSfx("system/newmessage.ogg");
sleep(1);
- sound.playSfx("system/newmessage.ogg", 0, 0);
- sound.playMusic("sfx/system/newmessage.ogg");
+ soundManager.playSfx("system/newmessage.ogg", 0, 0);
+ soundManager.playMusic("sfx/system/newmessage.ogg");
sleep(3);
- sound.stopMusic();
+ soundManager.stopMusic();
return 0;
}