feat: attempts to fix logging issue
All checks were successful
CI / build-and-test (push) Successful in 2m23s

This commit is contained in:
2025-11-17 19:14:27 +13:00
parent dcc21f2ba2
commit 26bcfac7d1
4 changed files with 95 additions and 25 deletions

View File

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