From 5af1cfd3c23bada840dcbc4f97808cf94a65a659 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 16 Nov 2015 18:47:26 -0500 Subject: [PATCH] [N-Rage] only need WBEM dependency in 1 .cpp, not a .h --- Source/nragev20/XInputController.cpp | 4 ++++ Source/nragev20/XInputController.h | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Source/nragev20/XInputController.cpp b/Source/nragev20/XInputController.cpp index 82f2a4bef..eaff11e28 100644 --- a/Source/nragev20/XInputController.cpp +++ b/Source/nragev20/XInputController.cpp @@ -19,6 +19,10 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +//code from http://msdn.microsoft.com/en-us/library/ee417014(VS.85).aspx +#include +#include + #include "XInputController.h" #include "FileAccess.h" #include diff --git a/Source/nragev20/XInputController.h b/Source/nragev20/XInputController.h index f9ef13361..a03d3b201 100644 --- a/Source/nragev20/XInputController.h +++ b/Source/nragev20/XInputController.h @@ -28,9 +28,6 @@ #ifndef _XINPUTCONTROLLER_H #define _XINPUTCONTROLLER_H -//code from http://msdn.microsoft.com/en-us/library/ee417014(VS.85).aspx -#include -#include //#include <-- only needed for SAFE_RELEASE(x) /* fixes undefined FILE, etc. type errors in MSVC 2010 build -- cxd4 */