HostInterface: Add software cursor mode
This will probably need to be extended in the future.
This commit is contained in:
@ -9,9 +9,15 @@
|
||||
#include <array>
|
||||
Log_SetChannel(NamcoGunCon);
|
||||
|
||||
NamcoGunCon::NamcoGunCon(System* system) : m_system(system) {}
|
||||
NamcoGunCon::NamcoGunCon(System* system) : m_system(system)
|
||||
{
|
||||
m_system->GetHostInterface()->EnableSoftwareCursor();
|
||||
}
|
||||
|
||||
NamcoGunCon::~NamcoGunCon() = default;
|
||||
NamcoGunCon::~NamcoGunCon()
|
||||
{
|
||||
m_system->GetHostInterface()->DisableSoftwareCursor();
|
||||
}
|
||||
|
||||
ControllerType NamcoGunCon::GetType() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user