diff options
Diffstat (limited to 'src/api/win32')
-rw-r--r-- | src/api/win32/init.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/win32/init.rs b/src/api/win32/init.rs index cc6d2d2..fdb88c9 100644 --- a/src/api/win32/init.rs +++ b/src/api/win32/init.rs @@ -177,8 +177,8 @@ unsafe fn init(title: Vec<u16>, builder: BuilderAttribs<'static>, unsafe { kernel32::GetProcAddress(dll, name.as_ptr()) as *const libc::c_void } }); - if let Ok(c) = EglContext::new(egl, &builder, Some(ptr::null()), - real_window.0) + if let Ok(c) = EglContext::new(egl, &builder, Some(ptr::null())) + .and_then(|p| p.finish(real_window.0)) { Context::Egl(c) |