diff options
Diffstat (limited to 'Source/Core/InputCommon/Src/InputCommon.cpp')
| -rw-r--r-- | Source/Core/InputCommon/Src/InputCommon.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/InputCommon/Src/InputCommon.cpp b/Source/Core/InputCommon/Src/InputCommon.cpp index 2d2188477d..beed506f8e 100644 --- a/Source/Core/InputCommon/Src/InputCommon.cpp +++ b/Source/Core/InputCommon/Src/InputCommon.cpp @@ -1,16 +1,16 @@ #include "EventHandler.h" -EventHandler *eventHandler = NULL; +//EventHandler *eventHandler = NULL; namespace InputCommon { void Init() { // init the event handler - eventHandler = new EventHandler(); + //EventHandler::GetInstance(); } void Shutdown() { - if (eventHandler) - delete eventHandler; + //if (eventHandler) + // delete eventHandler; } } |
