Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Displaying more information about available screens, fixing some over…
…lapping.
  • Loading branch information
MainMemory committed Dec 28, 2015
1 parent bc8e6d5 commit 1d834dd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion SADXModManager/MainForm.cs
Expand Up @@ -39,7 +39,7 @@ private void MainForm_Load(object sender, EventArgs e)
LoadModList();

for (int i = 0; i < Screen.AllScreens.Length; i++)
screenNumComboBox.Items.Add((i + 1).ToString() + " " + Screen.AllScreens[i].DeviceName);
screenNumComboBox.Items.Add((i + 1).ToString() + " " + Screen.AllScreens[i].DeviceName + " (" + Screen.AllScreens[i].Bounds.Location.X + "," + Screen.AllScreens[i].Bounds.Y + ") " + Screen.AllScreens[i].Bounds.Width + "x" + Screen.AllScreens[i].Bounds.Height + " " + Screen.AllScreens[i].BitsPerPixel + "bpp" + (Screen.AllScreens[i].Primary ? " Primary" : ""));

consoleCheckBox.Checked = loaderini.DebugConsole;
screenCheckBox.Checked = loaderini.DebugScreen;
Expand Down
10 changes: 6 additions & 4 deletions SADXModManager/MainForm.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1d834dd

Please sign in to comment.