Fix frame vs ui terminology

This commit is contained in:
Joonas Javanainen 2015-08-24 20:35:10 +01:00
parent 69fbe0ce9d
commit 235f9918d3

View File

@ -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 }
}
}