X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flight.cpp;h=067cc3d1fee1416cce0451e37a90c6482f7cc2e9;hb=2e7f19b895424c3a77940e648639f8df2b395d0f;hp=215b9d567eb6e357781015cd4f5f5e58844f3baf;hpb=b824398c547964c2862c4bf9f76426e1e8a4c1cb;p=libs%2Fgl.git diff --git a/source/light.cpp b/source/light.cpp index 215b9d56..067cc3d1 100644 --- a/source/light.cpp +++ b/source/light.cpp @@ -1,11 +1,4 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include "except.h" +#include #include "light.h" #include "misc.h" @@ -101,7 +94,7 @@ void Light::activate(unsigned i) static unsigned max_lights = get_i(GL_MAX_LIGHTS); if(i>=max_lights) - throw InvalidParameterValue("Light unit index out of range"); + throw out_of_range("Light::activate"); if(i>=current_lights.size()) current_lights.resize(i+1);