diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-03-31 23:06:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-03-31 23:06:04 +0300 |
commit | 28165cbeca05b74cf66f121757f21f4cb7cd381e (patch) | |
tree | c1c32225b4d94f75df8a20a5baacf009be88b0b0 /src/client.cpp | |
parent | 35d4ce0ed75b2575067007a85d5c211d292ebada (diff) | |
download | plus-28165cbeca05b74cf66f121757f21f4cb7cd381e.tar.gz plus-28165cbeca05b74cf66f121757f21f4cb7cd381e.tar.bz2 plus-28165cbeca05b74cf66f121757f21f4cb7cd381e.tar.xz plus-28165cbeca05b74cf66f121757f21f4cb7cd381e.zip |
Add support for sound effects in any notification messages.
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 3 |
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(); |