]> git.tdb.fi Git - libs/al.git/blobdiff - source/device.cpp
Drop copyright notices and Id tags from source files
[libs/al.git] / source / device.cpp
index dcc78f1aa949b37dbe173adf96a3cb140e1f41ff..63e87a98dbe509febd59ba665f60be05ae7c9e56 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of libmspal
-Copyright © 2008 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #include <msp/core/except.h>
 #include "device.h"
 
@@ -15,14 +8,14 @@ namespace AL {
 
 Device::Device()
 {
-       dev=alcOpenDevice(0);
+       dev = alcOpenDevice(0);
        if(!dev)
                throw Exception("Couldn't get OpenAL device");
 }
 
 Device::Device(const string &spec)
 {
-       dev=alcOpenDevice(spec.c_str());
+       dev = alcOpenDevice(spec.c_str());
        if(!dev)
                throw Exception("Couldn't get OpenAL device");
 }