Skip to content

Commit

Permalink
Merge pull request #387 from thefarcry118/master
Browse files Browse the repository at this point in the history
fixed GPU compiler error
  • Loading branch information
Orphis committed Jan 10, 2013
2 parents c1f76b0 + 64ee61a commit d09f58f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GPU/GPUCommon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit d09f58f

Please sign in to comment.