Skip to content

Commit d16d015

Browse files
committed
v4.4
1 parent 749492a commit d16d015

7 files changed

Lines changed: 255 additions & 82 deletions

File tree

Program.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
using System.Runtime.InteropServices;
2+
13
namespace FSR3ModSetupUtilityEnhanced
24

35

@@ -8,10 +10,16 @@ internal static class Program
810
/// The main entry point for the application.
911
/// </summary>
1012
[STAThread]
13+
14+
[DllImport("user32.dll", SetLastError = true)]
15+
static extern IntPtr SetProcessDpiAwarenessContext(int dpiContext);
16+
17+
const int DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2 = -4;
1118
static void Main()
1219
{
13-
// To customize application configuration such as set high DPI settings or default font,
14-
// see https://aka.ms/applicationconfiguration.
20+
SetProcessDpiAwarenessContext(DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2);
21+
Application.EnableVisualStyles();
22+
Application.SetCompatibleTextRenderingDefault(false);
1523
ApplicationConfiguration.Initialize();
1624
Application.Run(new mainForm());
1725
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# FSR3-Mod-Setup-Utility-Enhanced
2-
### Download the FSR3 Mod Setup Utility Enhanced [Here](https://sharemods.com/3y6zngv8qunq/FSR3_v4.3.rar.html)
2+
### Download the FSR3 Mod Setup Utility Enhanced [Here](https://sharemods.com/4yegpbdiqn3f/FSR3_v4.4.rar.html)
33

44
### Repository FSR3 Mod Setup Utility Standard Version [Here](https://github.com/P4TOLINO06/FSR3.0-Mod-Setup-Utility)
55

formGuide.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)