[draw] Window name

This commit is contained in:
2024-03-03 13:03:20 +05:30
parent 293c0efbc0
commit 1e8997d324

View File

@@ -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_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_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() .position_centered()
.build() .build()
.unwrap(); .unwrap();