Bring us closer to working with MinGW again.

The biggest obstacle right now deals with FFMPEG. I insist on being able to utilize the git clone/submodule (5_1_0) section. I'm just struggling with the commands.

As part of this commit, some linux files are restored in the compilation chain. This is for consistency with the old Makefile approach.

Assistance will be needed at this point to complete MinGW support.
This commit is contained in:
Jason Felds
2015-09-27 17:07:15 -04:00
parent 5fd90b7502
commit b3a5a82b5c
6 changed files with 139 additions and 76 deletions
@@ -22,7 +22,9 @@ InputHandler_Win32_Pump::InputHandler_Win32_Pump()
m_pDevice = new USBDevice[NUM_PUMPS];
int iNumFound = 0;
for( int p = 0; p < ARRAYSIZE(pump_usb_pids); ++p )
// TODO: Use C++1x semantics to loop through the pids.
// Hardcoding for now to keep this moving.
for( int p = 0; p < 2; ++p )
{
const int pump_usb_pid = pump_usb_pids[p];
for( int i = 0; i < NUM_PUMPS; ++i )