mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-29 03:10:28 +00:00
Our symbian compiler doesn't seem to be too fond of new style loops indeed
This commit is contained in:
parent
7bedbcbbb3
commit
6de30f5cbd
@ -182,8 +182,8 @@ void Config::Load(const char *iniFileName, const char *controllerIniFilename) {
|
||||
|
||||
auto pinnedPaths = iniFile.GetOrCreateSection("PinnedPaths")->ToMap();
|
||||
vPinnedPaths.clear();
|
||||
for (auto it : pinnedPaths) {
|
||||
vPinnedPaths.push_back(it.second);
|
||||
for (auto it = pinnedPaths.begin(), end = pinnedPaths.end(); it != end; ++it) {
|
||||
vPinnedPaths.push_back(it->second);
|
||||
}
|
||||
|
||||
IniFile::Section *cpu = iniFile.GetOrCreateSection("CPU");
|
||||
|
Loading…
Reference in New Issue
Block a user