aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/README.md b/README.md
index 9ea0ec0..5972f99 100644
--- a/README.md
+++ b/README.md
@@ -19,8 +19,6 @@ extern crate libc;
extern crate gl;
fn main() {
- use std::default::Default;
-
let window = init::Window::new().unwrap();
unsafe { window.make_current() };
@@ -29,7 +27,7 @@ fn main() {
gl::ClearColor(0.0, 1.0, 0.0, 1.0);
- while !window.should_close() {
+ while !window.is_closed() {
window.wait_events();
gl::Clear(gl::COLOR_BUFFER_BIT);