Browse Source

Fix ``camera-image.rs`` example (III)

pull/74/head
TechiePi 2 years ago
parent
commit
9ef0a7dcd6
  1. 2
      ctru-rs/examples/camera-image.rs

2
ctru-rs/examples/camera-image.rs

@ -83,7 +83,7 @@ fn main() {
.expect("Failed to take picture"); .expect("Failed to take picture");
} }
let img = convert_image_to_rgb8(&buf, 0, 0, WIDTH as usize, HEIGHT as usize); let img = convert_image_to_rgb8(&buf, 0, 0, WIDTH, HEIGHT);
unsafe { unsafe {
gfx.top_screen gfx.top_screen

Loading…
Cancel
Save