diff options
| author | 2021-09-20 17:36:23 -0500 | |
|---|---|---|
| committer | 2021-11-24 20:30:23 -0600 | |
| commit | 59b995a9e53f09b9831b03608cfe5ce27c3e3485 (patch) | |
| tree | 54cf3df8ed6ef572d754267be8339c9a8f25b203 /src/input_common/sdl/sdl.cpp | |
| parent | input_common: Rewrite udp client (diff) | |
| download | yuzu-59b995a9e53f09b9831b03608cfe5ce27c3e3485.tar.gz yuzu-59b995a9e53f09b9831b03608cfe5ce27c3e3485.tar.xz yuzu-59b995a9e53f09b9831b03608cfe5ce27c3e3485.zip | |
input_common: Rewrite SDL
Diffstat (limited to 'src/input_common/sdl/sdl.cpp')
| -rw-r--r-- | src/input_common/sdl/sdl.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/input_common/sdl/sdl.cpp b/src/input_common/sdl/sdl.cpp deleted file mode 100644 index 644db3448..000000000 --- a/src/input_common/sdl/sdl.cpp +++ /dev/null | |||
| @@ -1,19 +0,0 @@ | |||
| 1 | // Copyright 2018 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include "input_common/sdl/sdl.h" | ||
| 6 | #ifdef HAVE_SDL2 | ||
| 7 | #include "input_common/sdl/sdl_impl.h" | ||
| 8 | #endif | ||
| 9 | |||
| 10 | namespace InputCommon::SDL { | ||
| 11 | |||
| 12 | std::unique_ptr<State> Init() { | ||
| 13 | #ifdef HAVE_SDL2 | ||
| 14 | return std::make_unique<SDLState>(); | ||
| 15 | #else | ||
| 16 | return std::make_unique<NullState>(); | ||
| 17 | #endif | ||
| 18 | } | ||
| 19 | } // namespace InputCommon::SDL | ||