Remove all MSVC __int64 (#742)

This commit is contained in:
void_17
2026-03-07 03:31:30 +07:00
committed by GitHub
parent 175fc3824e
commit 988e3042e0
277 changed files with 3672 additions and 3684 deletions

View File

@@ -24,7 +24,7 @@ void ProgressRenderer::progressStart(int title)
void ProgressRenderer::progressStartNoAbort(int string)
{
noAbort = true;
noAbort = true;
_progressStart(string);
}
@@ -36,7 +36,7 @@ void ProgressRenderer::_progressStart(int title)
if (noAbort) return;
// throw new StopGameException(); // 4J - removed
}
EnterCriticalSection( &ProgressRenderer::s_progress );
lastPercent = 0;
this->title = title;
@@ -88,7 +88,7 @@ void ProgressRenderer::progressStagePercentage(int i)
}
__int64 now = System::currentTimeMillis();
int64_t now = System::currentTimeMillis();
if (now - lastTime < 20) return;
lastTime = now;