From 235f9918d34889400425d72c2dda88e804f42a40 Mon Sep 17 00:00:00 2001 From: Joonas Javanainen Date: Mon, 24 Aug 2015 20:35:10 +0100 Subject: [PATCH] Fix frame vs ui terminology --- examples/hello_world.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/hello_world.rs b/examples/hello_world.rs index 6d4dd23..bb851a1 100644 --- a/examples/hello_world.rs +++ b/examples/hello_world.rs @@ -16,9 +16,7 @@ fn main() { let mut support = Support::init(); loop { - let active = support.render(CLEAR_COLOR, |frame| { - hello_world(frame) - }); + let active = support.render(CLEAR_COLOR, hello_world); if !active { break } } }