From 1e8997d32418189bde160890a5a75849ea1ffaf3 Mon Sep 17 00:00:00 2001 From: Atreya Bain Date: Sun, 3 Mar 2024 13:03:20 +0530 Subject: [PATCH] [draw] Window name --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 6474f9f..e9e8481 100644 --- a/src/main.rs +++ b/src/main.rs @@ -140,7 +140,7 @@ fn initiate_sdl(draw_scale:f32) -> (WindowCanvas, EventPump) { let window_width = (Device::FRAME_BUFFER_WIDTH as f32 * draw_scale) as u32; let window_height = (Device::FRAME_BUFFER_HEIGHT as f32 * draw_scale) as u32; - let window = video_subsystem.window("byte-pusher-emu", window_width,window_height) + let window = video_subsystem.window("porcel8", window_width,window_height) .position_centered() .build() .unwrap();