Skip to content

Commit

Permalink
Fix compile on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
garbear committed Jun 23, 2015
1 parent b640b2e commit 4d25173
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/api/directinput/JoystickInterfaceDirectInput.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace JOYSTICK
class CJoystickInterfaceDirectInput : public CJoystickInterfaceCallback
{
public:
CJoystickInterfaceDirectInput(void);
CJoystickInterfaceDirectInput(void) { }
virtual ~CJoystickInterfaceDirectInput(void) { Deinitialize(); }

// implementation of IJoystickInterface
Expand Down
2 changes: 1 addition & 1 deletion src/api/xinput/JoystickInterfaceXInput.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace JOYSTICK
class CJoystickInterfaceXInput : public IJoystickInterface
{
public:
CJoystickInterfaceXInput(void);
CJoystickInterfaceXInput(void) { }
virtual ~CJoystickInterfaceXInput(void) { Deinitialize(); }

// Implementation of IJoystickInterface
Expand Down

0 comments on commit 4d25173

Please sign in to comment.