Skip to content

Commit

Permalink
examples/hello/src/main.rs: OpenGL minor version typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rcornea authored and grovesNL committed Sep 3, 2024
1 parent c6e9604 commit 9ba85f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/hello/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ fn main() {
let context_attributes = ContextAttributesBuilder::new()
.with_context_api(ContextApi::OpenGl(Some(glutin::context::Version {
major: 4,
minor: 10,
minor: 1,
})))
.build(raw_window_handle);

Expand Down

0 comments on commit 9ba85f9

Please sign in to comment.