reduce # of frames run while poking around

This commit is contained in:
Vivian Lim 2020-11-29 15:12:27 -08:00
parent 15c830f0b1
commit c78d1cb9fd
1 changed files with 2 additions and 0 deletions

View File

@ -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();
}