dolphin/Source/Core/InputCommon/ControllerEmu/ControlGroup/PrimeHackMisc.cpp
SirMangler 779f9f5550 Many Tweaks & Disabled Beams/Visor Menu
UI Update, Better ZNear application, fixes for visor scrolling.
2020-04-30 22:04:14 +01:00

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