mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
rollback something changes for Symbian compiling issue
This commit is contained in:
parent
a576420547
commit
d39006c748
1 changed files with 2 additions and 2 deletions
|
@ -733,8 +733,8 @@ static void SaveFrame(AVFrame *pFrame, int width, int height)
|
|||
|
||||
// check the existence of pmp media context
|
||||
bool isContextExist(u32 ctxAddr){
|
||||
for (auto it : pmp_ContextList){
|
||||
if (it == ctxAddr){
|
||||
for (std::list<u32>::iterator it = pmp_ContextList.begin(); it != pmp_ContextList.end(); it++){
|
||||
if (*it == ctxAddr){
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue