]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/sound_openal.cpp
Mapnode: Replace rotateAlongYAxis with improved version
[dragonfireclient.git] / src / sound_openal.cpp
index b2b424a19301f6c1b1c34f116bb0da3e0e939d61..195775396a9589039d67b838b1d142e67e443a3b 100644 (file)
@@ -37,10 +37,10 @@ with this program; ifnot, write to the Free Software Foundation, Inc.,
        #include <AL/alext.h>
 #endif
 #include <vorbis/vorbisfile.h>
+#include <assert.h>
 #include "log.h"
 #include "filesys.h"
 #include "util/numeric.h" // myrand()
-#include "debug.h" // assert()
 #include "porting.h"
 #include <map>
 #include <vector>
@@ -273,9 +273,9 @@ class OpenALSoundManager: public ISoundManager
                m_device = NULL;
 
                for (std::map<std::string, std::vector<SoundBuffer*> >::iterator i = m_buffers.begin();
-                               i != m_buffers.end(); i++) {
+                               i != m_buffers.end(); ++i) {
                        for (std::vector<SoundBuffer*>::iterator iter = (*i).second.begin();
-                                       iter != (*i).second.end(); iter++) {
+                                       iter != (*i).second.end(); ++iter) {
                                delete *iter;
                        }
                        (*i).second.clear();
@@ -402,11 +402,11 @@ class OpenALSoundManager: public ISoundManager
                std::set<std::string> datas;
                m_fetcher->fetchSounds(name, paths, datas);
                for(std::set<std::string>::iterator i = paths.begin();
-                               i != paths.end(); i++){
+                               i != paths.end(); ++i){
                        loadSoundFile(name, *i);
                }
                for(std::set<std::string>::iterator i = datas.begin();
-                               i != datas.end(); i++){
+                               i != datas.end(); ++i){
                        loadSoundData(name, *i);
                }
                return getBuffer(name);
@@ -421,7 +421,7 @@ class OpenALSoundManager: public ISoundManager
                std::set<int> del_list;
                for(std::map<int, PlayingSound*>::iterator
                                i = m_sounds_playing.begin();
-                               i != m_sounds_playing.end(); i++)
+                               i != m_sounds_playing.end(); ++i)
                {
                        int id = i->first;
                        PlayingSound *sound = i->second;
@@ -438,7 +438,7 @@ class OpenALSoundManager: public ISoundManager
                        verbosestream<<"OpenALSoundManager::maintain(): deleting "
                                        <<del_list.size()<<" playing sounds"<<std::endl;
                for(std::set<int>::iterator i = del_list.begin();
-                               i != del_list.end(); i++)
+                               i != del_list.end(); ++i)
                {
                        deleteSound(*i);
                }