1
0
mirror of https://github.com/livingcomputermuseum/Darkstar.git synced 2026-02-25 16:49:58 +00:00

Added option to stretch the display in fullscreen mode.

This commit is contained in:
Josh Dersch
2019-05-20 18:01:13 -07:00
parent 1ccf7589b3
commit a69e764da3
8 changed files with 119 additions and 45 deletions

View File

@@ -51,6 +51,7 @@ namespace D.UI
public bool SlowPhosphor;
public uint DisplayScale;
public bool FullScreenStretch;
public TODPowerUpSetMode TODSetMode;
public DateTime TODDateTime;
@@ -86,7 +87,8 @@ namespace D.UI
}
}
SlowPhosphorCheckBox.Checked = SlowPhosphor;
SlowPhosphorCheckBox.Checked = SlowPhosphor;
FullScreenStretchCheckBox.Checked = FullScreenStretch;
// Time Tab
switch (TODSetMode)
@@ -223,6 +225,7 @@ namespace D.UI
{
ThrottleSpeed = ThrottleSpeedCheckBox.Checked;
SlowPhosphor = SlowPhosphorCheckBox.Checked;
FullScreenStretch = FullScreenStretchCheckBox.Checked;
HostPacketInterfaceName = ((EthernetInterface)EthernetInterfaceListBox.SelectedItem).Name;