Revert "HW: Poll system input from system timers"

This reverts commit 854f6b8688.

Conflicts:
	Source/Core/Core/HW/GCPad.cpp
	Source/Core/Core/HW/Wiimote.cpp
	Source/Core/Core/State.cpp
This commit is contained in:
JosJuice
2015-05-11 07:22:35 +02:00
parent 78e59d08fe
commit b645547930
3 changed files with 16 additions and 14 deletions

View File

@ -118,6 +118,14 @@ void Update(int _number)
{
//PanicAlert( "Wiimote_Update" );
// if we are on the next input cycle, update output and input
static int _last_number = 4;
if (_number <= _last_number)
{
g_controller_interface.UpdateInput();
}
_last_number = _number;
if (WIIMOTE_SRC_EMU & g_wiimote_sources[_number])
((WiimoteEmu::Wiimote*)s_config.controllers[_number])->Update();
else