diff options
author | sfan5 <sfan5@live.de> | 2022-02-26 11:38:43 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2022-02-26 12:11:27 +0100 |
commit | df908ef4eaa7fd3292faa34d690edce40106da3c (patch) | |
tree | 7b8904f8bd7714768831ecfbe7c1c54a3e65549e /source/Irrlicht/CIrrDeviceWin32.cpp | |
parent | 01586f584aef460686c9ac7a59900ea90eb23fe8 (diff) | |
download | irrlicht-df908ef4eaa7fd3292faa34d690edce40106da3c.tar.xz |
Get rid of various old compiler and platform checks
Diffstat (limited to 'source/Irrlicht/CIrrDeviceWin32.cpp')
-rw-r--r-- | source/Irrlicht/CIrrDeviceWin32.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/source/Irrlicht/CIrrDeviceWin32.cpp b/source/Irrlicht/CIrrDeviceWin32.cpp index 4fedde2..0bb8c1f 100644 --- a/source/Irrlicht/CIrrDeviceWin32.cpp +++ b/source/Irrlicht/CIrrDeviceWin32.cpp @@ -22,20 +22,13 @@ #include "IGUISpriteBank.h"
#include <winuser.h>
#include "SExposedVideoData.h"
+
#if defined(_IRR_COMPILE_WITH_JOYSTICK_EVENTS_)
#include <mmsystem.h>
#include <regstr.h>
#ifdef _IRR_COMPILE_WITH_DIRECTINPUT_JOYSTICK_
#define DIRECTINPUT_VERSION 0x0800
#include <dinput.h>
-#ifdef _MSC_VER
-#pragma comment(lib, "dinput8.lib")
-#pragma comment(lib, "dxguid.lib")
-#endif
-#else
-#ifdef _MSC_VER
-#pragma comment(lib, "winmm.lib")
-#endif
#endif
#endif
|