Remove all MSVC __int64

This commit is contained in:
void_17
2026-03-07 02:52:52 +07:00
parent fc7ddbab14
commit c67db1115a
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;