diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-10-28 16:39:57 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-10-28 16:39:57 -0400 |
| commit | e76b1f2d56a3f3632ad353e540e5234bdb28c293 (patch) | |
| tree | bb30315bccaca030053f581881fc41bdcfb5d9cf /Source/Core/InputCommon/ControllerInterface/ControllerInterface.h | |
| parent | 09b27e854c6bd3ab4578e5b2b1c37c8d62141143 (diff) | |
| parent | d9d6cf8eda0d4cd8d0350c1a4e9b5f6b708e084d (diff) | |
Merge pull request #3170 from spxtr/pipes
Implemented GC Controller inputs via named pipes.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/ControllerInterface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h index 3aca18e95c..08b282dba8 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h @@ -38,6 +38,9 @@ #if defined(HAVE_LIBEVDEV) && defined(HAVE_LIBUDEV) #define CIFACE_USE_EVDEV #endif +#if defined(USE_PIPES) + #define CIFACE_USE_PIPES +#endif // // ControllerInterface |
