From db6e56cab84f004d8cee833b197d0cfc52014cd4 Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Mon, 10 Feb 2025 06:18:18 -0700 Subject: Playing around with faster random numbers --- src/sldj.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/sldj.c b/src/sldj.c index a3e5d1d..f8c1817 100644 --- a/src/sldj.c +++ b/src/sldj.c @@ -54,14 +54,13 @@ void updateSldj(Sldj* sldj) DrawTexturePro( viewport, (Rectangle){0.0, 0.0, viewport.width, viewport.height}, - (Rectangle){0.0, 0.0, GetScreenWidth(), GetScreenHeight()}, + (Rectangle){0.0, 0.0, viewport.width, viewport.height}, (Vector2){0.0, 0.0}, 0.0, WHITE ); - DrawFPS(0, 0); - //SetWindowTitle(TextFormat("Scanline DJ %dfps", GetFPS())); + DrawFPS(0, viewport.height); if (IsKeyPressed(KEY_R)) { -- cgit v1.2.3