File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ fn main() {
2020
2121fn sketch ( ) -> error:: Result < ( ) > {
2222 let mut glfw_ctx = GlfwContext :: new ( 600 , 600 ) ?;
23- init ( ) ?;
23+ init ( Config :: default ( ) ) ?;
2424
2525 let width = 600 ;
2626 let height = 600 ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ fn main() {
1919
2020fn sketch ( ) -> error:: Result < ( ) > {
2121 let mut glfw_ctx = GlfwContext :: new ( 400 , 400 ) ?;
22- init ( ) ?;
22+ init ( Config :: default ( ) ) ?;
2323
2424 let width = 400 ;
2525 let height = 400 ;
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ fn main() {
2020
2121fn sketch ( ) -> error:: Result < ( ) > {
2222 let mut glfw_ctx = GlfwContext :: new ( 600 , 600 ) ?;
23- init ( ) ?;
23+ init ( Config :: default ( ) ) ?;
2424
2525 let width = 600 ;
2626 let height = 600 ;
You can’t perform that action at this time.
0 commit comments