Fix application icon file

This commit is contained in:
Ry 2022-06-21 00:31:11 -07:00
parent 43be8f545a
commit c07eec2761
2 changed files with 1 additions and 1 deletions

BIN
src/32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

@ -153,7 +153,7 @@ fn main() {
let event_loop = EventLoop::new();
let mut input = WinitInputHelper::new();
let icon = image::load_from_memory(include_bytes!("../../docs/logos/32.png")).unwrap();
let icon = image::load_from_memory(include_bytes!("32.png")).unwrap();
let window = {
let size = LogicalSize::new(WIDTH as f64, HEIGHT as f64);
WindowBuilder::new()