summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h
diff options
context:
space:
mode:
authorskidau <skidau@gmail.com>2014-10-16 14:02:56 +1100
committerskidau <skidau@gmail.com>2014-10-16 14:02:56 +1100
commitf27aabd4112069044797d5ffef44dc776dabe72f (patch)
tree5cc353923a3662ba766689dd53bd6990d4b19701 /Source/Core/InputCommon/ControllerInterface/ControllerInterface.h
parent002b9f7acd40786c3859800dc9c69064955c1c3f (diff)
parentb7b2074cc2e78bb13160372ee82be7f85d0e3772 (diff)
Merge pull request #1278 from lioncash/controller
ControllerInterface: Get rid of SetHwnd(), introduce Reinitialize()
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.h')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/ControllerInterface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h
index 24bb493520..2420b65ed7 100644
--- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h
+++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h
@@ -114,8 +114,8 @@ public:
ControllerInterface() : m_is_init(false), m_hwnd(nullptr) {}
- void SetHwnd(void* const hwnd);
- void Initialize();
+ void Initialize(void* const hwnd);
+ void Reinitialize();
void Shutdown();
bool IsInit() const { return m_is_init; }