Update GetTickCount to GetTickCount64

This commit is contained in:
GabsPuNs
2026-04-11 10:06:31 -04:00
parent 720efd2f2e
commit 6be56e5786
8 changed files with 29 additions and 29 deletions

View File

@@ -161,7 +161,7 @@ void Screen::updateEvents()
static bool s_arrowFirstRepeat[2] = { false, false };
const DWORD ARROW_REPEAT_DELAY_MS = 250;
const DWORD ARROW_REPEAT_INTERVAL_MS = 50;
DWORD now = GetTickCount();
DWORD now = GetTickCount64();
// Poll keyboard events (special keys that may not come through WM_CHAR, e.g. Escape, arrows)
for (int vk = 0; vk < 256; vk++)