| // Copyright 2018 Citra Emulator Project | |
| // Licensed under GPLv2 or any later version | |
| // Refer to the license.txt file included. | |
| namespace InputCommon::SDL { | |
| std::unique_ptr<State> Init() { | |
| return std::make_unique<SDLState>(); | |
| return std::make_unique<NullState>(); | |
| } | |
| } // namespace InputCommon::SDL | |