From 0a3c3f7a6b6a70b1e3052b7fdf380e00bc0a3c89 Mon Sep 17 00:00:00 2001 From: nakeee Date: Fri, 23 Jan 2009 01:29:52 +0000 Subject: [PATCH] moved the inputmanager to inputcommon to avoid sdl dep in core git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1988 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/SConscript | 1 - Source/Core/{Core => InputCommon}/Src/InputManager.cpp | 0 Source/Core/{Core => InputCommon}/Src/InputManager.h | 0 Source/Core/InputCommon/Src/SConscript | 1 + 4 files changed, 1 insertion(+), 1 deletion(-) rename Source/Core/{Core => InputCommon}/Src/InputManager.cpp (100%) rename Source/Core/{Core => InputCommon}/Src/InputManager.h (100%) diff --git a/Source/Core/Core/Src/SConscript b/Source/Core/Core/Src/SConscript index a926baaa45..45a289b431 100644 --- a/Source/Core/Core/Src/SConscript +++ b/Source/Core/Core/Src/SConscript @@ -16,7 +16,6 @@ files = ["Console.cpp", "State.cpp", "Tracer.cpp", "PluginManager.cpp", - "InputManager.cpp", "VolumeHandler.cpp", "Boot/Boot.cpp", "Boot/Boot_BIOSEmu.cpp", diff --git a/Source/Core/Core/Src/InputManager.cpp b/Source/Core/InputCommon/Src/InputManager.cpp similarity index 100% rename from Source/Core/Core/Src/InputManager.cpp rename to Source/Core/InputCommon/Src/InputManager.cpp diff --git a/Source/Core/Core/Src/InputManager.h b/Source/Core/InputCommon/Src/InputManager.h similarity index 100% rename from Source/Core/Core/Src/InputManager.h rename to Source/Core/InputCommon/Src/InputManager.h diff --git a/Source/Core/InputCommon/Src/SConscript b/Source/Core/InputCommon/Src/SConscript index e5fe35e802..e5eeff99b5 100644 --- a/Source/Core/InputCommon/Src/SConscript +++ b/Source/Core/InputCommon/Src/SConscript @@ -5,6 +5,7 @@ Import('env') files = [ 'EventHandler.cpp', 'InputCommon.cpp', + "InputManager.cpp", ] env_inputcommon = env.Clone()