From 97e3948f3265b002524186874c9e186189df2f35 Mon Sep 17 00:00:00 2001 From: Gwilym Kuiper Date: Thu, 11 Aug 2022 23:49:27 +0100 Subject: [PATCH] Fix warnings and remove debug logs --- agb/examples/affine_background.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/agb/examples/affine_background.rs b/agb/examples/affine_background.rs index f5519727..9f95e400 100644 --- a/agb/examples/affine_background.rs +++ b/agb/examples/affine_background.rs @@ -6,7 +6,7 @@ use agb::{ tiled::{AffineBackgroundSize, TileFormat, TileSet, TiledMap}, Priority, }, - fixnum::{num, Num}, + fixnum::num, include_gfx, input::Tri, }; @@ -54,7 +54,6 @@ fn main(mut gba: agb::Gba) -> ! { }; let new_scroll_pos = bg.scroll_pos() + x_dir + y_dir; - agb::println!("{:?}", new_scroll_pos); bg.set_scroll_pos(new_scroll_pos); bg.set_transform((0i16, 0i16).into(), (1, 1).into(), rotation);