mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-01-18 22:41:46 +00:00
Linked with the latest SlimDX (September 2011)
This commit is contained in:
parent
c024702a17
commit
dcc7992774
3 changed files with 3 additions and 3 deletions
Binary file not shown.
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue