comparison menu.c @ 972:4899d3ae37b3

Implement Windows versions of recently added functions in util.c and get the Windows build working again
author Michael Pavone <pavone@retrodev.com>
date Thu, 21 Apr 2016 23:46:33 -0700
parents 750995b587a0
children 51885857c019
comparison
equal deleted inserted replaced
971:e28f365605da 972:4899d3ae37b3
105 105
106 cleanup: 106 cleanup:
107 (*env)->PopLocalFrame(env, NULL); 107 (*env)->PopLocalFrame(env, NULL);
108 return ret; 108 return ret;
109 } 109 }
110 #endif
111
112 #ifdef _WIN32
113 #define localtime_r(a,b) localtime(a)
110 #endif 114 #endif
111 115
112 void * menu_write_w(uint32_t address, void * context, uint16_t value) 116 void * menu_write_w(uint32_t address, void * context, uint16_t value)
113 { 117 {
114 m68k_context *m68k = context; 118 m68k_context *m68k = context;