aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ConsoleSaveFileConverter.cpp
diff options
context:
space:
mode:
authorvoid_17 <61356189+void2012@users.noreply.github.com>2026-03-06 02:11:18 +0700
committerGitHub <noreply@github.com>2026-03-06 02:11:18 +0700
commit55231bb8d3e1a4e2752ac3d444c4287eb0ca4e8b (patch)
tree953c537a5c66e328e9f4ab29626cf738112d53c0 /Minecraft.World/ConsoleSaveFileConverter.cpp
parent7d6658fe5b3095f35093701b5ab669ffc291e875 (diff)
Remove AUTO_VAR macro and _toString function (#592)
Diffstat (limited to 'Minecraft.World/ConsoleSaveFileConverter.cpp')
-rw-r--r--Minecraft.World/ConsoleSaveFileConverter.cpp28
1 files changed, 15 insertions, 13 deletions
diff --git a/Minecraft.World/ConsoleSaveFileConverter.cpp b/Minecraft.World/ConsoleSaveFileConverter.cpp
index 16b025a5..21de3cbe 100644
--- a/Minecraft.World/ConsoleSaveFileConverter.cpp
+++ b/Minecraft.World/ConsoleSaveFileConverter.cpp
@@ -273,27 +273,29 @@ void ConsoleSaveFileConverter::ConvertSave(ConsoleSaveFile *sourceSave, ConsoleS
// 4J Stu - Old version that just changes the compression of chunks, not usable for XboxOne style split saves or compressed tile formats
// Process region files
vector<FileEntry *> *allFilesInSave = sourceSave->getFilesWithPrefix(wstring(L""));
- for(AUTO_VAR(it, allFilesInSave->begin()); it < allFilesInSave->end(); ++it)
+ if ( allFilesInSave )
{
- FileEntry *fe = *it;
- if( fe != sourceLdatFe )
+ for ( FileEntry* fe : *allFilesInSave )
{
- wstring fName( fe->data.filename );
- wstring suffix(L".mcr");
- if( fName.compare(fName.length() - suffix.length(), suffix.length(), suffix) == 0 )
+ if (fe != sourceLdatFe)
{
+ wstring fName(fe->data.filename);
+ wstring suffix(L".mcr");
+ if (fName.compare(fName.length() - suffix.length(), suffix.length(), suffix) == 0)
+ {
#ifndef _CONTENT_PACKAGE
- wprintf(L"Processing a region file: %s\n", fe->data.filename);
+ wprintf(L"Processing a region file: %s\n", fe->data.filename);
#endif
- ProcessStandardRegionFile(sourceSave, File(fe->data.filename), targetSave, File(fe->data.filename) );
- }
- else
- {
+ ProcessStandardRegionFile(sourceSave, File(fe->data.filename), targetSave, File(fe->data.filename));
+ }
+ else
+ {
#ifndef _CONTENT_PACKAGE
- wprintf(L"%s is not a region file, ignoring\n", fe->data.filename);
+ wprintf(L"%s is not a region file, ignoring\n", fe->data.filename);
#endif
+ }
}
}
- }
#endif
+ }
} \ No newline at end of file