Fix and re-enable the fullscreen example

This commit is contained in:
Pierre Krieger 2015-04-24 09:25:39 +02:00
parent c1af76550f
commit e12f06ad48

View file

@ -4,7 +4,7 @@ extern crate android_glue;
extern crate glutin; extern crate glutin;
use std::old_io::stdio::stdin; use std::io;
mod support; mod support;
@ -23,8 +23,10 @@ fn main() {
} }
print!("Please write the number of the monitor to use: "); print!("Please write the number of the monitor to use: ");
let num = stdin().read_line().unwrap().as_slice().trim().parse()
.ok().expect("Please enter a number"); let mut num = String::new();
io::stdin().read_line(&mut num).unwrap();
let num = num.trim().parse().ok().expect("Please enter a number");
let monitor = glutin::get_available_monitors().nth(num).expect("Please enter a valid ID"); let monitor = glutin::get_available_monitors().nth(num).expect("Please enter a valid ID");
println!("Using {:?}", monitor.get_name()); println!("Using {:?}", monitor.get_name());