diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-01-28 12:16:12 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-01-28 12:16:22 +0100 |
commit | 70689ebffd95ab34e45bcbfdce3f6389033bfd44 (patch) | |
tree | fec7a7b89e434948c69efe2a1f64510d8c343c50 /platform | |
parent | 7fe66bc70f7004a2e516e39ccdc1f700eacdc77d (diff) |
Remove unused iostream includes
Diffstat (limited to 'platform')
-rw-r--r-- | platform/windows/joypad.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/platform/windows/joypad.cpp b/platform/windows/joypad.cpp index ba05d2e495..5fafc7c8c0 100644 --- a/platform/windows/joypad.cpp +++ b/platform/windows/joypad.cpp @@ -29,9 +29,9 @@ /*************************************************************************/ #include "joypad.h" + #include <oleauto.h> #include <wbemidl.h> -#include <iostream> #ifndef __GNUC__ #define __builtin_bswap32 _byteswap_ulong @@ -149,15 +149,12 @@ bool JoypadWindows::setup_dinput_joypad(const DIDEVICEINSTANCE *instance) { const DWORD devtype = (instance->dwDevType & 0xFF); if ((devtype != DI8DEVTYPE_JOYSTICK) && (devtype != DI8DEVTYPE_GAMEPAD) && (devtype != DI8DEVTYPE_1STPERSON)) { - //printf("ignore device %s, type %x\n", instance->tszProductName, devtype); return false; } hr = dinput->CreateDevice(instance->guidInstance, &joy->di_joy, NULL); if (FAILED(hr)) { - - //std::wcout << "failed to create device: " << instance->tszProductName << std::endl; return false; } @@ -383,8 +380,6 @@ void JoypadWindows::process_joypads() { hr = joy->di_joy->GetDeviceState(sizeof(DIJOYSTATE2), &js); if (FAILED(hr)) { - - //printf("failed to read joy #%d\n", i); continue; } |