Fix typo in default window height

This commit is contained in:
biroder
2025-07-01 11:07:19 +03:00
committed by GitHub
parent 7b588f0222
commit adb7a4dff6
+2 -2
View File
@@ -118,7 +118,7 @@ pub struct WindowParams {
impl Default for WindowParams {
fn default() -> Self {
Self {
size_hint: (640, 48),
size_hint: (640, 480),
mode: WindowMode::Windowed,
}
}
@@ -155,4 +155,4 @@ pub enum SpriteBatchCommand {
DrawRectFlip(Rect<f32>, Rect<f32>, bool, bool),
DrawRectTinted(Rect<f32>, Rect<f32>, Color),
DrawRectFlipTinted(Rect<f32>, Rect<f32>, bool, bool, Color),
}
}