mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
WiimoteEmu/DolphinQt: Better extension display names.
This commit is contained in:
@ -20,6 +20,11 @@ namespace ControllerEmu
|
||||
{
|
||||
static std::recursive_mutex s_get_state_mutex;
|
||||
|
||||
std::string EmulatedController::GetDisplayName() const
|
||||
{
|
||||
return GetName();
|
||||
}
|
||||
|
||||
EmulatedController::~EmulatedController() = default;
|
||||
|
||||
// This should be called before calling GetState() or State() on a control reference
|
||||
|
@ -28,7 +28,9 @@ class EmulatedController
|
||||
{
|
||||
public:
|
||||
virtual ~EmulatedController();
|
||||
|
||||
virtual std::string GetName() const = 0;
|
||||
virtual std::string GetDisplayName() const;
|
||||
|
||||
virtual void LoadDefaults(const ControllerInterface& ciface);
|
||||
|
||||
|
Reference in New Issue
Block a user