mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 15:01:16 +01:00
fix linux build, last njoy commit broke it :P
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@127 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
bcaa0d1d86
commit
e7786f3934
@ -1,7 +1,7 @@
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
warnings = ' -Wall -Wwrite-strings -Wfloat-equal -Wshadow -Wpointer-arith -Wcast-qual -Wpacked -Wno-conversion'
|
warnings = ' -Wall -Wwrite-strings -Wfloat-equal -Wshadow -Wpointer-arith -Wpacked -Wno-conversion'
|
||||||
|
|
||||||
nonactive_warnings = '-Wunreachable-code'
|
nonactive_warnings = '-Wunreachable-code'
|
||||||
|
|
||||||
|
@ -44,6 +44,7 @@ bool emulator_running = FALSE;
|
|||||||
|
|
||||||
// Handle to window
|
// Handle to window
|
||||||
HWND m_hWnd;
|
HWND m_hWnd;
|
||||||
|
bool g_rumbleEnable = FALSE;
|
||||||
|
|
||||||
// Rumble in windows
|
// Rumble in windows
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
@ -55,7 +56,6 @@ DWORD g_dwNumForceFeedbackAxis = 0;
|
|||||||
INT g_nXForce = 0;
|
INT g_nXForce = 0;
|
||||||
INT g_nYForce = 0;
|
INT g_nYForce = 0;
|
||||||
|
|
||||||
bool g_rumbleEnable = FALSE;
|
|
||||||
#define SAFE_RELEASE(p) { if(p) { (p)->Release(); (p)=NULL; } }
|
#define SAFE_RELEASE(p) { if(p) { (p)->Release(); (p)=NULL; } }
|
||||||
|
|
||||||
HRESULT InitDirectInput(HWND hDlg);
|
HRESULT InitDirectInput(HWND hDlg);
|
||||||
@ -410,7 +410,6 @@ void PAD_GetStatus(BYTE _numPAD, SPADStatus* _pPADStatus)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
g_rumbleEnable = TRUE;
|
g_rumbleEnable = TRUE;
|
||||||
#endif
|
|
||||||
|
|
||||||
if (g_rumbleEnable)
|
if (g_rumbleEnable)
|
||||||
{
|
{
|
||||||
@ -419,6 +418,7 @@ void PAD_GetStatus(BYTE _numPAD, SPADStatus* _pPADStatus)
|
|||||||
if(g_pEffect)
|
if(g_pEffect)
|
||||||
g_pEffect->Start(1, 0);
|
g_pEffect->Start(1, 0);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set PAD rumble
|
// Set PAD rumble
|
||||||
|
Loading…
x
Reference in New Issue
Block a user