From bce314cd9c6346b1e0516f6df6a53b6b9b6f2c12 Mon Sep 17 00:00:00 2001 From: Ross Andrews Date: Sat, 27 Apr 2024 23:51:13 -0500 Subject: [PATCH] Change default screen size to 40x30 --- vgfx/src/display.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vgfx/src/display.rs b/vgfx/src/display.rs index 52e342d..fa9a091 100644 --- a/vgfx/src/display.rs +++ b/vgfx/src/display.rs @@ -21,8 +21,8 @@ impl Default for DisplayRegisters { screen: Word::from(0x10000), palette: Word::from(0x20000 - 0x100), font: Word::from(0x20000 - 0x100 - 0x2000), - height: Word::from(60), - width: Word::from(80), + height: Word::from(30), + width: Word::from(40), row_offset: Word::from(0), col_offset: Word::from(0), }