diff options
Diffstat (limited to 'glutin')
| -rw-r--r-- | glutin/src/application.rs | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/glutin/src/application.rs b/glutin/src/application.rs index 7ff6216e..cbb23891 100644 --- a/glutin/src/application.rs +++ b/glutin/src/application.rs @@ -120,7 +120,9 @@ where          #[allow(unsafe_code)]          unsafe { -            context.make_current(todo!()).expect("Make OpenGL context current") +            context +                .make_current(todo!()) +                .expect("Make OpenGL context current")          }      }; | 
