mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #387 from thefarcry118/master
fixed GPU compiler error
This commit is contained in:
commit
d09f58fb0e
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue