Fix MouseInterface to compile in linux.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
Andrea Odetti 2017-07-10 20:57:07 +01:00
parent 140b5bf7d4
commit b9c4789198

View file

@ -40,7 +40,7 @@ Etc.
*/
#include "stdafx.h"
#include "StdAfx.h"
#include "SaveState_Structs_common.h"
#include "Common.h"
@ -49,10 +49,9 @@ Etc.
#include "Log.h"
#include "Memory.h"
#include "MouseInterface.h"
#include "SoundCore.h" // SAFE_RELEASE()
#include "YamlHelper.h"
#include "..\resource\resource.h"
#include "../resource/resource.h"
#ifdef _DEBUG
#define _DEBUG_SPURIOUS_IRQ
@ -755,6 +754,8 @@ bool CMouseInterface::LoadSnapshot(class YamlLoadHelper& yamlLoadHelper, UINT sl
return true;
}
#ifdef WIN32
//=============================================================================
// DirectInput interface
//=============================================================================
@ -762,6 +763,7 @@ bool CMouseInterface::LoadSnapshot(class YamlLoadHelper& yamlLoadHelper, UINT sl
//#define STRICT
#define DIRECTINPUT_VERSION 0x0800
#include "SoundCore.h" // SAFE_RELEASE()
#include <dinput.h>
extern bool g_bDisableDirectInput; // currently in AppleWin.h
@ -977,3 +979,5 @@ namespace DIMouse
}
}; // namespace DIMouse
#endif