1
0
mirror of https://github.com/livingcomputermuseum/Darkstar.git synced 2026-05-01 14:06:38 +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

@@ -290,6 +290,7 @@ namespace D.UI
configDialog.HostPacketInterfaceName = Configuration.HostPacketInterfaceName;
configDialog.ThrottleSpeed = Configuration.ThrottleSpeed;
configDialog.DisplayScale = Configuration.DisplayScale;
configDialog.FullScreenStretch = Configuration.FullScreenStretch;
configDialog.SlowPhosphor = Configuration.SlowPhosphor;
configDialog.TODDateTime = Configuration.TODDateTime;
configDialog.TODDate = Configuration.TODDate;
@@ -335,10 +336,11 @@ namespace D.UI
}
}
Configuration.MemorySize = configDialog.MemorySize;
Configuration.MemorySize = configDialog.MemorySize;
Configuration.ThrottleSpeed = configDialog.ThrottleSpeed;
Configuration.DisplayScale = configDialog.DisplayScale;
Configuration.SlowPhosphor = configDialog.SlowPhosphor;
Configuration.FullScreenStretch = configDialog.FullScreenStretch;
Configuration.TODDateTime = configDialog.TODDateTime;
Configuration.TODDate = configDialog.TODDate;
Configuration.TODSetMode = configDialog.TODSetMode;