Skip to content
Snippets Groups Projects
Commit 98f5d8a7 authored by Lioncash's avatar Lioncash
Browse files

input_common/main: Remove unnecessary headers

parent 4b9b203c
No related branches found
No related tags found
No related merge requests found
...@@ -8,13 +8,19 @@ ...@@ -8,13 +8,19 @@
#include <string> #include <string>
#include <unordered_map> #include <unordered_map>
#include <vector> #include <vector>
#include "input_common/gcadapter/gc_poller.h"
#include "input_common/settings.h"
namespace Common { namespace Common {
class ParamPackage; class ParamPackage;
} }
namespace Settings::NativeAnalog {
enum Values : int;
}
namespace Settings::NativeButton {
enum Values : int;
}
namespace InputCommon { namespace InputCommon {
namespace Polling { namespace Polling {
......
...@@ -17,11 +17,11 @@ ...@@ -17,11 +17,11 @@
#include <vector> #include <vector>
#include <SDL.h> #include <SDL.h>
#include "common/logging/log.h" #include "common/logging/log.h"
#include "common/math_util.h"
#include "common/param_package.h" #include "common/param_package.h"
#include "common/threadsafe_queue.h" #include "common/threadsafe_queue.h"
#include "core/frontend/input.h" #include "core/frontend/input.h"
#include "input_common/sdl/sdl_impl.h" #include "input_common/sdl/sdl_impl.h"
#include "input_common/settings.h"
namespace InputCommon::SDL { namespace InputCommon::SDL {
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
namespace Settings { namespace Settings {
namespace NativeButton { namespace NativeButton {
enum Values { enum Values : int {
A, A,
B, B,
X, X,
...@@ -52,7 +52,7 @@ extern const std::array<const char*, NumButtons> mapping; ...@@ -52,7 +52,7 @@ extern const std::array<const char*, NumButtons> mapping;
} // namespace NativeButton } // namespace NativeButton
namespace NativeAnalog { namespace NativeAnalog {
enum Values { enum Values : int {
LStick, LStick,
RStick, RStick,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment