diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-04-21 23:46:33 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-04-21 23:46:33 -0700 |
commit | fc95db97d2755c014ea961e248057eac5452175a (patch) | |
tree | 4bec0ab2480188b01a6db77909f1c177cd484615 /menu.c | |
parent | d5c369a7c040e96e2067ebda45d9e1b9ad018e63 (diff) |
Implement Windows versions of recently added functions in util.c and get the Windows build working again
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -109,6 +109,10 @@ cleanup: } #endif +#ifdef _WIN32 +#define localtime_r(a,b) localtime(a) +#endif + void * menu_write_w(uint32_t address, void * context, uint16_t value) { m68k_context *m68k = context; |