mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-01 22:30:08 +01:00
shared_mutex_t implemented GUI Emu Callbacks rewritten fxm::import, fxm::import_always implemented cellMsgDialog rewritten Emu.CallAfter improved (returns std::future)
16 lines
250 B
C++
16 lines
250 B
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
|
|
#include "Pad.h"
|
|
|
|
void PadManager::Init(u32 max_connect)
|
|
{
|
|
m_pad_handler = Emu.GetCallbacks().get_pad_handler();
|
|
m_pad_handler->Init(max_connect);
|
|
}
|
|
|
|
void PadManager::Close()
|
|
{
|
|
m_pad_handler.reset();
|
|
}
|