Changeset 3133 for code/branches/pch/src/orxonox/sound/SoundBase.cc
- Timestamp:
- Jun 9, 2009, 10:06:57 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/sound/SoundBase.cc
r3108 r3133 26 26 * 27 27 */ 28 29 #include "SoundBase.h" 30 28 31 #include <vector> 29 32 #include <AL/alut.h> 30 33 #include <vorbis/vorbisfile.h> 31 34 #include <boost/static_assert.hpp> 35 36 #include "util/Math.h" 37 #include "core/Core.h" 32 38 #include "orxonox/objects/worldentities/WorldEntity.h" 33 #include "util/Math.h"34 #include "SoundBase.h"35 39 #include "SoundManager.h" 36 #include "core/Core.h" 40 41 // Make sure we correctly avoid including al.h in the header 42 BOOST_STATIC_ASSERT(sizeof(uint32_t) == sizeof(ALuint)); 43 BOOST_STATIC_ASSERT(sizeof(int32_t) == sizeof(ALint)); 37 44 38 45 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.