diff --git a/Capy64/Assets/bios.lua b/Capy64/Assets/bios.lua index 69b421c..db51d01 100644 --- a/Capy64/Assets/bios.lua +++ b/Capy64/Assets/bios.lua @@ -34,7 +34,7 @@ term.setForeground(fg) term.setBackground(bg) term.clear() -term.setSize(51, 19) +term.setSize(53, 20) gpu.setScale(2) local w, h = term.getSize() diff --git a/Capy64/Capy64.cs b/Capy64/Capy64.cs index 78db4d4..c824ae8 100644 --- a/Capy64/Capy64.cs +++ b/Capy64/Capy64.cs @@ -58,8 +58,8 @@ public class Capy64 : Game, IGame public Capy64 Game => this; public IList NativePlugins { get; private set; } public IList Plugins { get; private set; } - public int Width { get; set; } = 400; - public int Height { get; set; } = 300; + public int Width { get; set; } = 320; + public int Height { get; set; } = 240; public float Scale { get; set; } = 2f; public Drawing Drawing { get; private set; } public Audio Audio { get; private set; } diff --git a/Capy64/Runtime/PanicScreen.cs b/Capy64/Runtime/PanicScreen.cs index ff146c4..1362a57 100644 --- a/Capy64/Runtime/PanicScreen.cs +++ b/Capy64/Runtime/PanicScreen.cs @@ -28,7 +28,7 @@ public class PanicScreen Term.ForegroundColor = ForegroundColor; Term.BackgroundColor = BackgroundColor; Term.SetCursorBlink(false); - Term.SetSize(51, 19); + Term.SetSize(53, 20); Term.Clear(); var title = " Capy64 ";