summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.cpp
diff options
context:
space:
mode:
authorMichael Maltese <michaeljosephmaltese@gmail.com>2017-02-07 18:28:40 -0800
committerMichael Maltese <michaeljosephmaltese@gmail.com>2017-03-13 13:47:01 -0700
commitc4ba046aa3e27e6445c663c7af544562e25d591b (patch)
treedd5719008f3d2a6cdef4c57be2a31f6e14044763 /Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.cpp
parent24a5411af54eee87f35466d44869e4f8eb35115f (diff)
Remove unused ControllerEmu::BackgroundInputSetting
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.cpp b/Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.cpp
deleted file mode 100644
index 0e7b3d785e..0000000000
--- a/Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2017 Dolphin Emulator Project
-// Licensed under GPLv2+
-// Refer to the license.txt file included.
-
-#include "InputCommon/ControllerEmu/Setting/BackgroundInputSetting.h"
-#include "Core/ConfigManager.h"
-#include "InputCommon/ControllerEmu/Setting/Setting.h"
-
-namespace ControllerEmu
-{
-BackgroundInputSetting::BackgroundInputSetting(const std::string& setting_name)
- : BooleanSetting(setting_name, false, SettingType::VIRTUAL)
-{
-}
-
-bool BackgroundInputSetting::GetValue() const
-{
- return SConfig::GetInstance().m_BackgroundInput;
-}
-void BackgroundInputSetting::SetValue(bool value)
-{
- m_value = value;
- SConfig::GetInstance().m_BackgroundInput = value;
-}
-
-} // namespace ControllerEmu