summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.h
diff options
context:
space:
mode:
authorAnthony <Helios747@users.noreply.github.com>2017-03-19 22:31:30 -0700
committerGitHub <noreply@github.com>2017-03-19 22:31:30 -0700
commitb35bbdfb58b80f5799ab5d43fcab4b72da7594b2 (patch)
tree6b2ee0277409261f069276f666684c709c9060ee /Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.h
parent8eb26d298e383a56e8a0f2be580ed2c5f69eacbf (diff)
parent1b0701e988bcdfe0f822638bb5c22bbd3739fd06 (diff)
Merge pull request #4856 from ligfx/backgroundinput
Move "Background Input" out of individual controller configurations
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.h')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.h b/Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.h
deleted file mode 100644
index fc1f8c1de3..0000000000
--- a/Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.h
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright 2017 Dolphin Emulator Project
-// Licensed under GPLv2+
-// Refer to the license.txt file included.
-
-#pragma once
-
-#include "InputCommon/ControllerEmu/Setting/BooleanSetting.h"
-
-namespace ControllerEmu
-{
-class BackgroundInputSetting : public BooleanSetting
-{
-public:
- BackgroundInputSetting(const std::string& setting_name);
-
- bool GetValue() const override;
- void SetValue(bool value) override;
-};
-
-} // namespace ControllerEmu