diff options
author | Michael Pavone <pavone@retrodev.com> | 2018-02-07 09:32:20 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2018-02-07 09:32:20 -0800 |
commit | eae5c0b52cb94efd6b5d989883e79bd9efb38111 (patch) | |
tree | 4bdbc533694380be93f06370c5ba403ced1518e6 /menu.c | |
parent | a956d5e1f82e98097602e289ac8f02374ea3b5e7 (diff) |
Fix unguarged windows.h include
--HG--
branch : nuklear_ui
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -121,7 +121,9 @@ uint32_t copy_dir_entry_to_guest(uint32_t dst, m68k_context *m68k, char *name, u } return dst; } +#ifdef _WIN32 #include <windows.h> +#endif void * menu_write_w(uint32_t address, void * context, uint16_t value) { m68k_context *m68k = context; |