Reduce default frame count to a sane number.

This commit is contained in:
2024-12-16 00:09:46 -05:00
parent 35889b5561
commit 55ddf3312d
2 changed files with 5 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ use image::{ImageBuffer, Rgb};
use rayon::prelude::*;
// Number of frames to generate.
const FRAMES = 200;
const FRAMES = 20;
// Frame size.
const IMGW: u32 = 1024;