FEX: Fix build for MinGW. No need to use the safe version (and non standard) of localtime here.

This commit is contained in:
bgk 2011-03-13 15:08:36 +00:00
parent 432e8b627f
commit 4b1db84145
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ blargg_err_t Zip7_Extractor::next_v()
time_t _time = time;
#ifdef _WIN32
localtime_s( &tm, &_time );
tm = *localtime( &_time );
#else
localtime_r( &_time, &tm );
#endif