Previous | 199869 Revisions | Next |
r33192 Tuesday 4th November, 2014 at 04:16:53 UTC by Alex W. Jackson |
---|
px4.c: safer portability fix (nw) |
[src/mess/drivers] | px4.c |
r241703 | r241704 | |
---|---|---|
590 | 590 | // writing clock? |
591 | 591 | if (m_clock_state > 0) |
592 | 592 | { |
593 | struct tm *t = localtime((const long int *)&m_time.time); | |
593 | time_t time = m_time.time; | |
594 | struct tm *t = localtime(&time); | |
594 | 595 | |
595 | 596 | switch (m_clock_state++) |
596 | 597 | { |
https://github.com/mamedev/mame/commit/d2658487c12a885dc1333f0375aa2131a1eba03f |
Previous | 199869 Revisions | Next |