diff options
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp index f446200a3..220fd04dd 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -38,6 +38,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "sha1.h" #include "base64.h" #include "clientmap.h" +#include "sound.h" static std::string getTextureCacheDir() { @@ -2323,4 +2324,8 @@ u16 Client::allocateUnknownNodeId(const std::string &name) assert(0); return CONTENT_IGNORE; } +ISoundManager* Client::getSoundManager() +{ + return &dummySoundManager; +} |