diff --git a/inf3.csproj b/inf3.csproj
index d748242..a690624 100644
--- a/inf3.csproj
+++ b/inf3.csproj
@@ -22,6 +22,7 @@
x86
False
/unsafe
+ true
none
@@ -31,6 +32,7 @@
4
x86
False
+ true
diff --git a/sounds/step.wav b/sounds/step.wav
new file mode 100644
index 0000000..09f88ab
Binary files /dev/null and b/sounds/step.wav differ
diff --git a/src/Gui/Splashscreen.cs b/src/Gui/Splashscreen.cs
index c04735d..d9cb2f6 100644
--- a/src/Gui/Splashscreen.cs
+++ b/src/Gui/Splashscreen.cs
@@ -1,5 +1,6 @@
using System;
using System.Drawing;
+using System.Drawing.Drawing2D;
using System.Windows.Forms;
namespace WorldOfPeacecraft
@@ -18,11 +19,8 @@ namespace WorldOfPeacecraft
protected override void OnPaint (PaintEventArgs e)
{
Graphics g = e.Graphics;
- }
-
- public void PaintImage(Graphics g)
- {
- g.DrawImage (Logo, 100, 20, 450, 150);
+ g.InterpolationMode = InterpolationMode.Low;
+ g.DrawImage (Logo, 0, 0, 450, 150);
}
}
}