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

@@ -170,7 +170,7 @@ GameRuleDefinition* LevelGenerationOptions::addChild(
void LevelGenerationOptions::addAttribute(const std::wstring& attributeName,
const std::wstring& attributeValue) {
if (attributeName.compare(L"seed") == 0) {
m_seed = _fromString<__int64>(attributeValue);
m_seed = _fromString<int64_t>(attributeValue);
app.DebugPrintf(
"LevelGenerationOptions: Adding parameter m_seed=%I64d\n", m_seed);
} else if (attributeName.compare(L"spawnX") == 0) {