Make output image smaller.

This commit is contained in:
Matthew Gordon 2019-12-21 10:07:02 -05:00
parent 1b9cf2cbca
commit 12e26887c1
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@ fn init_canvas(
}
pub fn main() -> Result<(), Box<dyn std::error::Error>> {
let image_width = 2400;
let image_height = 1800;
let image_width = 1200;
let image_height = 900;
let (sdl_context, mut canvas) = init_canvas(image_width, image_height)?;