summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index d433ff1..e2d08b0 100644
--- a/src/main.c
+++ b/src/main.c
@@ -46,7 +46,7 @@ _main_loop([[maybe_unused]] void *udata)
player_update();
assert(TZR_DrawBegin() == 0);
- if (rand() % 1 == 0) {
+ if (rand() % 10 == 0) {
int r; do r = rand(); while ((r & 7) == 0);
TZR_DrawSetColor(r & 1, (r & 2) != 0, (r & 4) != 0);
TZR_DrawClear();