diff --git a/NativeDllTester/MainWindow.xaml b/NativeDllTester/MainWindow.xaml
index 4507fbc..1610350 100644
--- a/NativeDllTester/MainWindow.xaml
+++ b/NativeDllTester/MainWindow.xaml
@@ -5,14 +5,31 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:NativeDllTester"
mc:Ignorable="d"
- Title="MainWindow" Height="450" Width="800">
+ Title="Native Dll Tester" Height="450" Width="800"
+ WindowStartupLocation="CenterScreen"
+ WindowState="Maximized">
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/NativeDllTester/NativeDllTester.csproj b/NativeDllTester/NativeDllTester.csproj
index dc24aef..e199b2a 100644
--- a/NativeDllTester/NativeDllTester.csproj
+++ b/NativeDllTester/NativeDllTester.csproj
@@ -26,7 +26,7 @@
4
- AnyCPU
+ x86
pdbonly
true
bin\Release\
diff --git a/NativeDllTester/Properties/AssemblyInfo.cs b/NativeDllTester/Properties/AssemblyInfo.cs
index 57cb1e2..49d6403 100644
--- a/NativeDllTester/Properties/AssemblyInfo.cs
+++ b/NativeDllTester/Properties/AssemblyInfo.cs
@@ -10,9 +10,9 @@
[assembly: AssemblyTitle("NativeDllTester")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
+[assembly: AssemblyCompany("Sam Vanheer")]
[assembly: AssemblyProduct("NativeDllTester")]
-[assembly: AssemblyCopyright("Copyright © 2019")]
+[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
+[assembly: AssemblyVersion("1.1.0.0")]
+[assembly: AssemblyFileVersion("1.1.0.0")]
diff --git a/README.md b/README.md
index b80d839..68bc3af 100644
--- a/README.md
+++ b/README.md
@@ -2,12 +2,12 @@
This is a small tool to get the error code returned by `LoadLibrary` when it fails to load a library.
-Enter the path to the dll or click Browse to select it, then click Load
-
-If an error occurs, the `Error Code` field contains the native error code
-
+1. Place the executable in your Half-Life directory
+2. Launch the program
+3. Enter the path to the dll or click Browse to select it, then click Load
+4. If an error occurs, the `Error Code` field contains the native error code.
The translated error message is displayed in the field below
-Error messages are translated by C#'s `Win32Exception` class, so it can't be displayed in English
+Error messages are translated by C#'s `Win32Exception` class, so it can't be displayed in English.
-See the [List of Error Codes](https://docs.microsoft.com/en-us/windows/desktop/debug/system-error-codes) to find the corresponding name and description in English
+See the [List of Error Codes](https://docs.microsoft.com/en-us/windows/desktop/debug/system-error-codes) to find the corresponding name and description in English.