Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
mahlemiut committed Aug 26, 2015
1 parent 7629804 commit 01f562a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/emu/ioport.c
Original file line number Diff line number Diff line change
Expand Up @@ -4488,7 +4488,7 @@ int ioport_manager::sprintframetime(char *timearray)
char *tptr=timearray;
int seconds;
int minutes;
double fps=ATTOSECONDS_TO_HZ((machine().first_screen()->frame_period().attoseconds));
double fps=ATTOSECONDS_TO_HZ((machine().first_screen()->frame_period().attoseconds()));
seconds = (fps) ? m_playback_accumulated_frames/fps : 0;
if (seconds >= 24*60*60)
{
Expand Down

0 comments on commit 01f562a

Please sign in to comment.