emu/recording.cpp: fixed compile

This commit is contained in:
Ivan Vangelista 2023-04-15 21:45:00 +02:00
parent 5898fb9353
commit 96280c2ac0

View File

@ -195,7 +195,7 @@ bool avi_movie_recording::initialize(running_machine &machine, std::unique_ptr<e
info.audio_samplerate = machine.sample_rate();
// compute the frame time
set_frame_period(attotime::from_ticks(info.video_sampletime, info.video_timescale);
set_frame_period(attotime::from_ticks(info.video_sampletime, info.video_timescale));
// create the file
avi_file::error avierr = avi_file::create(fullpath, info, m_avi_file);