summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/Setting/BackgroundInputSetting.h
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.h
parent24a5411af54eee87f35466d44869e4f8eb35115f (diff)
Remove unused ControllerEmu::BackgroundInputSetting
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