summaryrefslogtreecommitdiff
path: root/examples/bmp.rs
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2022-10-17 22:46:26 -0400
committerMicha White <botahamec@outlook.com>2022-10-17 22:46:26 -0400
commitbc859833a41aa581228a476c3fa81acac9730a2e (patch)
treea9672889f832cf722f5f2267fbb256f182088f9e /examples/bmp.rs
parente017b675d96c58924071ca6c739bbd7910a2b2b4 (diff)
Minor changes to an example
Diffstat (limited to 'examples/bmp.rs')
-rw-r--r--examples/bmp.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/bmp.rs b/examples/bmp.rs
index f68d573..9db50d1 100644
--- a/examples/bmp.rs
+++ b/examples/bmp.rs
@@ -8,12 +8,12 @@ use winit::event_loop::EventLoop;
fn main() {
// configure the render window
let config = RenderWindowConfig {
- title: "A Bumper Sticker and an Icon for Hire",
+ title: "Bumper Stickers",
instance_capacity: 2,
default_width: NonZeroU32::new(1280).unwrap(),
default_height: NonZeroU32::new(720).unwrap(),
- mode: alligator_render::config::WindowMode::BorderlessFullscreen,
- vsync: false,
+ //mode: alligator_render::config::WindowMode::BorderlessFullscreen,
+ //vsync: false,
..Default::default()
};