From c78d1cb9fdac263a698a62e7e9431daa1b02b62d Mon Sep 17 00:00:00 2001 From: Vivian Lim Date: Sun, 29 Nov 2020 15:12:27 -0800 Subject: [PATCH] reduce # of frames run while poking around --- examples/ffmpeg_recorder.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/ffmpeg_recorder.rs b/examples/ffmpeg_recorder.rs index 6299eb3..b78c962 100644 --- a/examples/ffmpeg_recorder.rs +++ b/examples/ffmpeg_recorder.rs @@ -354,6 +354,8 @@ fn main() -> Fallible<()> { emu.frame_properties_locked = true; octx.write_header().unwrap(); + //for frame in 0..60*10 { + for frame in 0..10 { eprintln!("🖼️ frame: {}", frame); emu.run(); }