diff --git a/agb/examples/object_text_render.rs b/agb/examples/object_text_render.rs index 75e839fb..d5323724 100644 --- a/agb/examples/object_text_render.rs +++ b/agb/examples/object_text_render.rs @@ -89,11 +89,11 @@ fn main(mut gba: agb::Gba) -> ! { frame += 1; - // agb::println!( - // "Took {} cycles, line done {}", - // 256 * (end.wrapping_sub(start) as u32), - // line_done - // ); + agb::println!( + "Took {} cycles, line done {}", + 256 * (end.wrapping_sub(start) as u32), + line_done + ); } } }