From b58ee690a3e4744b712a9e831c99a29b3102f76e Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sun, 8 Apr 2012 14:35:57 +0300 Subject: [PATCH] Allow looping of local and positional sounds --- src/client.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client.cpp b/src/client.cpp index de3c63698..7f92e5176 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -1639,10 +1639,10 @@ void Client::ProcessData(u8 *data, u32 datasize, u16 sender_peer_id) int client_id = -1; switch(type){ case 0: // local - client_id = m_sound->playSound(name, false, gain); + client_id = m_sound->playSound(name, loop, gain); break; case 1: // positional - client_id = m_sound->playSoundAt(name, false, gain, pos); + client_id = m_sound->playSoundAt(name, loop, gain, pos); break; case 2: { // object ClientActiveObject *cao = m_env.getActiveObject(object_id);