Merge pull request #713 from jshrake/fix-readme-usage

Fix the usage example in the README
This commit is contained in:
tomaka 2016-01-23 21:30:18 +01:00
commit 0faaa590b1

View file

@ -44,7 +44,7 @@ fn main() {
unsafe { window.make_current() };
unsafe {
gl::load_with(|symbol| window.get_proc_address(symbol));
gl::load_with(|symbol| window.get_proc_address(symbol) as *const _);
gl::ClearColor(0.0, 1.0, 0.0, 1.0);
}