Results 8 comments of Neil Danson

Repro ``` use minifb::*; const WIDTH: usize = 320; const HEIGHT: usize = 240; fn create_window() -> minifb::Window { minifb::Window::new( "App", WIDTH, HEIGHT, WindowOptions { scale: Scale::X4, transparency: false, ..WindowOptions::default()...

> I would recommend that you try to clone the `rust_minifb` repo and run one of the examples and see if these works. Such as `cargo run --release --example noise`...

Also interestingly however is that the version in `master` (cargo toml 0.25) doesnt match the released version (also 0.25) (ie missing `window.set_target_fps(60);`) Could it be fixed _since_ the latest published...

I can confirm that adding `minifb = { git = "https://github.com/emoon/rust_minifb.git", rev = "633e6cd4f8f55fd9cbedc461976dde0f408bea35" }` as my dependency everything renders fine

No rush on my account - its good to know its fixed and I'm unblocked by specifying the revision. Thanks for such an awesome project :)

> How are others thinking about it? As the original raiser of the issue (not that that make me an authoritarian), I'm largely indifferent to the fixed-ness of this. I...

I _think_ there may still be (at least 1) issue on Windows WRT mouse. I'll try to knock up a small repro this morning

``` use minifb::{MouseButton, MouseMode, Scale, WindowOptions}; const WIDTH: usize = 28; const HEIGHT: usize = 28; fn create_window() -> minifb::Window { minifb::Window::new( "Mouse App", WIDTH, HEIGHT, WindowOptions { scale: Scale::X32,...