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