From d39006c748b6dec433379ea5962a77a7acfa07be Mon Sep 17 00:00:00 2001 From: kaienfr Date: Tue, 8 Apr 2014 04:17:32 +0200 Subject: [PATCH] rollback something changes for Symbian compiling issue --- Core/HLE/sceMpeg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/HLE/sceMpeg.cpp b/Core/HLE/sceMpeg.cpp index f45d446917..d0cb5b4868 100644 --- a/Core/HLE/sceMpeg.cpp +++ b/Core/HLE/sceMpeg.cpp @@ -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::iterator it = pmp_ContextList.begin(); it != pmp_ContextList.end(); it++){ + if (*it == ctxAddr){ return true; } }