diff options
author | 2016-11-11 13:41:45 +1100 | |
---|---|---|
committer | 2016-11-11 13:41:45 +1100 | |
commit | b76ee2bbad90a3a916a9e5a5eb363f70ca12d569 (patch) | |
tree | 837aed1623e548d64bd8976f96d301e3f0689f91 | |
parent | 477e47ee5f6c52df72b1a98a4ee472e6842a697c (diff) | |
parent | 2d969228c6c65c264bf5cdae7228edfe7ad89179 (diff) |
Merge pull request #1653 from ajrhacker/osd_input_fix
Unbreak non-Windows builds yet again (nw)
-rw-r--r-- | src/osd/modules/input/input_windows.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/osd/modules/input/input_windows.cpp b/src/osd/modules/input/input_windows.cpp index 45450343500..163d10bf01c 100644 --- a/src/osd/modules/input/input_windows.cpp +++ b/src/osd/modules/input/input_windows.cpp @@ -8,6 +8,8 @@ #include "input_module.h" +#if defined(OSD_WINDOWS) || defined(OSD_UWP) + // MAME headers #include "emu.h" #include "osdepend.h" @@ -149,3 +151,4 @@ void windows_osd_interface::customize_input_type_list(simple_list<input_type_ent } } +#endif |