]> git.tdb.fi Git - libs/al.git/blobdiff - source/device.cpp
Style update: add spaces around assignments
[libs/al.git] / source / device.cpp
index dcc78f1aa949b37dbe173adf96a3cb140e1f41ff..aea089790ca51251dc4acd3407a0e78880ece1d7 100644 (file)
@@ -15,14 +15,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");
 }