Merge pull request #387 from thefarcry118/master

fixed GPU compiler error
This commit is contained in:
Florent Castelli 2013-01-10 00:07:55 -08:00
commit d09f58fb0e

View file

@ -13,7 +13,7 @@ void init() {
int GPUCommon::listStatus(int listid)
{
for(DisplayListQueue::const_iterator it(dlQueue.cbegin()); it != dlQueue.cend(); ++it)
for(DisplayListQueue::iterator it(dlQueue.begin()); it != dlQueue.end(); ++it)
{
if(it->id == listid)
{