abg

Animated background for X11
git clone git://git.laack.co/abg.git
Log | Files | Refs | README

commit b4257ea6d908953a99da922017232ee9b5bab2ba
parent 7b9a6d0e77c4522533d6d632269990172323df0e
Author: Andrew Laack <andrew@laack.co>
Date:   Tue, 15 Sep 2026 23:39:27 -0500

Fix cast

Diffstat:
Mbackground/src/main.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/background/src/main.cpp b/background/src/main.cpp @@ -80,7 +80,7 @@ int main(int argc, char** argv) { ClearBackground(BLACK); g.render(); EndDrawing(); - usleep((int)sleepTime * 1000000); + usleep((int)(sleepTime * 1000000)); oneStepPrim(toVisit, visitedIndices, g); } }