fix: log window is now working correctly
All checks were successful
CI / build-and-test (push) Successful in 2m17s

This commit is contained in:
2025-11-17 19:43:14 +13:00
parent 26bcfac7d1
commit 2ae078a82b
4 changed files with 64 additions and 78 deletions

View File

@@ -2,7 +2,7 @@ float x = 50;
float y = 100;
void Update(float dt) {
x += 640 * dt;
x += 64 * dt;
if (x > 800) {
x = 0;
Print("X position reset!");