Skip to content

Commit

Permalink
Make seizure faster
Browse files Browse the repository at this point in the history
  • Loading branch information
cibomahto committed Sep 30, 2012
1 parent 69e3c25 commit 2681206
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Seizure.pde
Expand Up @@ -2,13 +2,13 @@ class Seizure extends Routine {
int count = 0;

void draw() {
if (count < 2) {
if (count < 1) {
background(0,0,0);
}
else {
background(255,255,255);
}

count = (count + 1) % 4;
count = (count + 1) % 2;
}
}

0 comments on commit 2681206

Please sign in to comment.