From 5d3a46796798da4969d54f226629f245dea49486 Mon Sep 17 00:00:00 2001 From: Determinant Date: Mon, 13 Nov 2017 01:48:48 -0500 Subject: ... --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index cd39d39..9e54547 100644 --- a/src/main.rs +++ b/src/main.rs @@ -79,7 +79,7 @@ fn get_rgb(color: u8) -> Color { impl ppu::Screen for SDLWindow { fn put(&self, x: u8, y: u8, color: u8) { let mut canvas = self.canvas.borrow_mut(); - println!("put {} at {}, {}", color, x, y); + //println!("put {} at {}, {}", color, x, y); canvas.set_draw_color(get_rgb(color)); canvas.draw_rect(Rect::new((x as u32 * PIXEL_SIZE) as i32, (y as u32 * PIXEL_SIZE) as i32, -- cgit v1.2.3