refactor: replace double-underscore MSVC integer types with stdint

This commit is contained in:
Tropical
2026-03-30 00:08:25 -05:00
parent e45151ae64
commit 6ed953a3c3
42 changed files with 91 additions and 100 deletions

View File

@@ -273,7 +273,7 @@ void SelectWorldScreen::WorldSelectionList::renderItem(int i, int x, int y,
time.wYear, time.wHour, time.wMinute); // 4J - TODO Localise this
id = id + L" (" + buffer;
__int64 size = levelSummary->getSizeOnDisk();
int64_t size = levelSummary->getSizeOnDisk();
id = id + L", " + _toString<float>(size / 1024 * 100 / 1024 / 100.0f) +
L" MB)";
std::wstring info;