diff --git a/Source/Core/Core/Src/LuaInterface.cpp b/Source/Core/Core/Src/LuaInterface.cpp index 72fe99cc67..7d7e10f3a5 100644 --- a/Source/Core/Core/Src/LuaInterface.cpp +++ b/Source/Core/Core/Src/LuaInterface.cpp @@ -3839,8 +3839,8 @@ struct TieredRegion bool Contains(unsigned int address, int size) const { - typename std::vector::const_iterator iter;// = islands.begin(); - typename std::vector::const_iterator end;// = islands.end(); + typename std::vector::const_iterator iter = islands.begin(); + typename std::vector::const_iterator end = islands.end(); for(; iter != end; ++iter) if(iter->Contains(address, size)) return true;