aboutsummaryrefslogtreecommitdiffstats
path: root/03-wolfrand/src
diff options
context:
space:
mode:
Diffstat (limited to '03-wolfrand/src')
-rw-r--r--03-wolfrand/src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/03-wolfrand/src/main.c b/03-wolfrand/src/main.c
index 5bf9578..4d4fa34 100644
--- a/03-wolfrand/src/main.c
+++ b/03-wolfrand/src/main.c
@@ -11,7 +11,7 @@
#define DISP_WIDTH 640
#define DISP_HEIGHT 480
-#define FPS 3.0
+#define FPS 3.3
#define DO_INIT(check, desc) \
if (!(check)) { \
@@ -126,7 +126,7 @@ int main(int argc, char **argv)
memset(bits[1], 0, (DISP_HEIGHT - 1) * DISP_WIDTH / 8);
for (x = 1; x < DISP_WIDTH - 1; x++) {
- if (randombytes_random() < 0x80000000)
+ if (randombytes_random() < 0x20000000)
bit_toggle(bits[0], x);
}