summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-03-31 23:06:04 +0300
committerAndrei Karas <akaras@inbox.ru>2013-03-31 23:06:04 +0300
commit28165cbeca05b74cf66f121757f21f4cb7cd381e (patch)
treec1c32225b4d94f75df8a20a5baacf009be88b0b0 /src/client.cpp
parent35d4ce0ed75b2575067007a85d5c211d292ebada (diff)
downloadmv-28165cbeca05b74cf66f121757f21f4cb7cd381e.tar.gz
mv-28165cbeca05b74cf66f121757f21f4cb7cd381e.tar.bz2
mv-28165cbeca05b74cf66f121757f21f4cb7cd381e.tar.xz
mv-28165cbeca05b74cf66f121757f21f4cb7cd381e.zip
Add support for sound effects in any notification messages.
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp
index f79baf7df..10a6c6f96 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -83,6 +83,7 @@
#include "resources/imagehelper.h"
#include "resources/openglimagehelper.h"
#include "resources/sdlimagehelper.h"
+#include "resources/sounddb.h"
#include "resources/itemdb.h"
#include "resources/mapdb.h"
#include "resources/monsterdb.h"
@@ -734,6 +735,7 @@ void Client::gameClear()
// Unload XML databases
CharDB::unload();
ColorDB::unload();
+ SoundDB::unload();
EmoteDB::unload();
ItemDB::unload();
MonsterDB::unload();
@@ -1369,6 +1371,7 @@ int Client::gameExec()
// Load XML databases
CharDB::load();
ColorDB::load();
+ SoundDB::load();
MapDB::load();
ItemDB::load();
Being::load();