refactor: expand AUTO_VAR macro

This commit is contained in:
Tropical
2026-03-29 23:59:05 -05:00
parent a330ecdcbb
commit e45151ae64
201 changed files with 1051 additions and 1055 deletions

View File

@@ -857,7 +857,7 @@ void ConsoleSaveFileOriginal::ConvertToLocalPlatform() {
// convert each of the region files to the local platform
std::vector<FileEntry*>* allFilesInSave =
getFilesWithPrefix(std::wstring(L""));
for (AUTO_VAR(it, allFilesInSave->begin()); it < allFilesInSave->end();
for (auto it = allFilesInSave->begin(); it < allFilesInSave->end();
++it) {
FileEntry* fe = *it;
std::wstring fName(fe->data.filename);