mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-29 21:42:31 +02:00
19 lines
428 B
C++
19 lines
428 B
C++
#include "InputCommon/ControllerEmu/ControlGroup/PrimeHackMisc.h"
|
|
|
|
namespace ControllerEmu
|
|
{
|
|
PrimeHackMisc::PrimeHackMisc(const std::string& name_) : ControlGroup(name_, GroupType::PrimeHack)
|
|
{
|
|
}
|
|
|
|
int PrimeHackMisc::GetSelectedDevice() const
|
|
{
|
|
return m_selection_setting.GetValue();
|
|
}
|
|
|
|
void PrimeHackMisc::SetSelectedDevice(int val)
|
|
{
|
|
m_selection_setting.SetValue(val);
|
|
}
|
|
} // namespace ControllerEmu
|