Linked with the latest SlimDX (September 2011)

This commit is contained in:
codeimp 2011-12-02 19:49:09 +00:00
parent c024702a17
commit dcc7992774
3 changed files with 3 additions and 3 deletions

Binary file not shown.

View file

@ -40,7 +40,7 @@ namespace CodeImp.DoomBuilder.Actions
// Mouse input
private DirectInput dinput;
private Device<MouseState> mouse;
private Mouse mouse;
// Disposing
private bool isdisposed = false;
@ -62,7 +62,7 @@ namespace CodeImp.DoomBuilder.Actions
dinput = new DirectInput();
// Start mouse input
mouse = new Device<MouseState>(dinput, SystemGuid.Mouse);
mouse = new Mouse(dinput);
if(mouse == null) throw new Exception("No mouse device found.");
// Set mouse input settings

View file

@ -499,7 +499,7 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\Build\Sharpzip.dll</HintPath>
</Reference>
<Reference Include="SlimDX, Version=2.0.7.41, Culture=neutral, PublicKeyToken=b1b0c32fd1ffe4f9, processorArchitecture=x86" />
<Reference Include="SlimDX, Version=2.0.12.43, Culture=neutral, PublicKeyToken=b1b0c32fd1ffe4f9, processorArchitecture=x86" />
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>