mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-24 23:25:37 +01:00
Formatting fixes.
This commit is contained in:
parent
c6c9b6f4f9
commit
582fe3e693
@ -1,11 +1,5 @@
|
|||||||
namespace Giants.Launcher
|
namespace Giants.Launcher
|
||||||
{
|
{
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
public class ApplicationNames
|
public class ApplicationNames
|
||||||
{
|
{
|
||||||
public const string Giants = nameof(Giants);
|
public const string Giants = nameof(Giants);
|
||||||
|
@ -53,7 +53,9 @@ namespace Giants.Launcher
|
|||||||
CompatibleRenderers = RendererInterop.GetCompatibleRenderers(gamePath);
|
CompatibleRenderers = RendererInterop.GetCompatibleRenderers(gamePath);
|
||||||
if (CompatibleRenderers.Count == 0)
|
if (CompatibleRenderers.Count == 0)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Could not locate any renderers compatible with your system. The most compatible renderer has been selected, but you may experience difficulty running the game.",
|
MessageBox.Show(
|
||||||
|
"Could not locate any renderers compatible with your system. " +
|
||||||
|
"The most compatible renderer has been selected, but you may experience difficulty running the game.",
|
||||||
"Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
"Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -76,7 +78,6 @@ namespace Giants.Launcher
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
Settings["Renderer"] = RegistryExtensions.GetValue(REGISTRY_KEY, "Renderer", Settings["Renderer"], typeof(string));
|
Settings["Renderer"] = RegistryExtensions.GetValue(REGISTRY_KEY, "Renderer", Settings["Renderer"], typeof(string));
|
||||||
//System.Diagnostics.Debug.Assert(_Settings["Renderer"] is string);
|
|
||||||
Settings["Antialiasing"] = RegistryExtensions.GetValue(REGISTRY_KEY, "Antialiasing", Settings["Antialiasing"], typeof(int));
|
Settings["Antialiasing"] = RegistryExtensions.GetValue(REGISTRY_KEY, "Antialiasing", Settings["Antialiasing"], typeof(int));
|
||||||
Settings["AnisotropicFiltering"] = RegistryExtensions.GetValue(REGISTRY_KEY, "AnisotropicFiltering", Settings["AnisotropicFiltering"], typeof(int));
|
Settings["AnisotropicFiltering"] = RegistryExtensions.GetValue(REGISTRY_KEY, "AnisotropicFiltering", Settings["AnisotropicFiltering"], typeof(int));
|
||||||
Settings["VideoWidth"] = RegistryExtensions.GetValue(REGISTRY_KEY, "VideoWidth", Settings["VideoWidth"], typeof(int));
|
Settings["VideoWidth"] = RegistryExtensions.GetValue(REGISTRY_KEY, "VideoWidth", Settings["VideoWidth"], typeof(int));
|
||||||
|
@ -33,6 +33,5 @@ namespace Giants.Launcher
|
|||||||
{
|
{
|
||||||
return string.Format("{0}x{1}", this.Width, this.Height);
|
return string.Format("{0}x{1}", this.Width, this.Height);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user