Move input to its own directory (#7126)

This commit is contained in:
linkmauve 2019-12-22 17:39:42 +01:00 committed by Megamouse
parent f03cb5c9c0
commit e9c5c6e6bf
28 changed files with 67 additions and 66 deletions

View file

@ -13,15 +13,15 @@
#include "Emu/Io/Null/NullPadHandler.h"
#include "keyboard_pad_handler.h"
#include "ds3_pad_handler.h"
#include "ds4_pad_handler.h"
#include "Input/keyboard_pad_handler.h"
#include "Input/ds3_pad_handler.h"
#include "Input/ds4_pad_handler.h"
#ifdef _WIN32
#include "xinput_pad_handler.h"
#include "mm_joystick_handler.h"
#include "Input/xinput_pad_handler.h"
#include "Input/mm_joystick_handler.h"
#endif
#ifdef HAVE_LIBEVDEV
#include "evdev_joystick_handler.h"
#include "Input/evdev_joystick_handler.h"
#endif
inline std::string sstr(const QString& _in) { return _in.toStdString(); }