aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-06-13 23:47:22 -0400
committerbnewbold <bnewbold@robocracy.org>2016-06-13 23:47:22 -0400
commit541e91206df95e5910961bdbf84b329350e27a02 (patch)
tree997ded09070109c4d51bbdc12c1a082db89782f9
parent8e6c8bdfb4924bc671dd37e47d473ea803880825 (diff)
downloadexuberant-hacks-541e91206df95e5910961bdbf84b329350e27a02.tar.gz
exuberant-hacks-541e91206df95e5910961bdbf84b329350e27a02.zip
src/lib: small cleanups
-rw-r--r--src/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index f24c658..8bccf3b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,7 +1,5 @@
-#[macro_use]
extern crate glium;
-
extern crate image;
extern crate getopts;
extern crate time;
@@ -99,7 +97,7 @@ pub fn make_display(conf: &Matches) -> glium::Display {
glium::glutin::WindowBuilder::new()
.from_existing_window(id),
None => glium::glutin::WindowBuilder::new()
- .with_title(format!("Exuberant Cow!"))
+ .with_title(format!("Exuberant Hack!"))
.with_depth_buffer(24),
};
let display = win_builder.build_glium().unwrap();