summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/Src/InputCommon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/InputCommon/Src/InputCommon.cpp')
-rw-r--r--Source/Core/InputCommon/Src/InputCommon.cpp8
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;
}
}