mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
compile fix for windows
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1074 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -17,6 +17,7 @@
|
||||
|
||||
#include "pluginspecs_wiimote.h"
|
||||
|
||||
#include "wiiuse.h"
|
||||
#include <queue>
|
||||
|
||||
#include "common.h"
|
||||
@ -25,14 +26,6 @@
|
||||
#include "wiimote_hid.h"
|
||||
#include "wiimote_emu.h"
|
||||
|
||||
|
||||
#define WIIUSE_INTERNAL_H_INCLUDED
|
||||
#define WIIUSE_COMPILE_LIB
|
||||
|
||||
#include "wiiuse_012/wiiuse.h"
|
||||
#include "wiiuse_012/io.h"
|
||||
|
||||
|
||||
extern SWiimoteInitialize g_WiimoteInitialize;
|
||||
extern void __Log(int log, const char *format, ...);
|
||||
|
||||
@ -98,10 +91,9 @@ namespace WiiMoteReal
|
||||
|
||||
g_pCriticalSection->Leave();
|
||||
|
||||
memset(m_pWiiMote->event_buf, 0, MAX_PAYLOAD);
|
||||
if (wiiuse_io_read(m_pWiiMote))
|
||||
{
|
||||
byte* pBuffer = m_pWiiMote->event_buf;
|
||||
const byte* pBuffer = m_pWiiMote->event_buf;
|
||||
|
||||
// check if we have a channel (connection) if so save the data...
|
||||
if (m_channelID > 0)
|
||||
|
Reference in New Issue
Block a user