Fixed deltatime

This commit is contained in:
2025-12-25 22:16:51 +00:00
parent fd2c43ec27
commit 90698ba91c
2 changed files with 16 additions and 4 deletions

View File

@@ -267,7 +267,7 @@
function builtinRead(x) {
if (x === 'screen' || x === './screen.js') {
const url = new URL('screen.js', window.location.href).href;
const url = new URL('screen.js?t=' + Date.now(), window.location.href).href;
const xhr = new XMLHttpRequest();
xhr.open("GET", url, false);
xhr.send();