summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video.cpp')
-rw-r--r--src/emu/video.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/emu/video.cpp b/src/emu/video.cpp
index a1c246f70f2..46a2cbfd9d8 100644
--- a/src/emu/video.cpp
+++ b/src/emu/video.cpp
@@ -107,7 +107,6 @@ video_manager::video_manager(running_machine &machine)
m_avi_frame_period(attotime::zero),
m_avi_next_frame_time(attotime::zero),
m_avi_frame(0),
- m_dummy_recording(false),
m_timecode_enabled(false),
m_timecode_write(false),
m_timecode_text(""),
@@ -160,10 +159,6 @@ video_manager::video_manager(running_machine &machine)
if (filename[0] != 0)
begin_recording(filename, MF_AVI);
-#ifdef MAME_DEBUG
- m_dummy_recording = machine.options().dummy_write();
-#endif
-
// if no screens, create a periodic timer to drive updates
if (machine.first_screen() == nullptr)
{
@@ -1272,7 +1267,7 @@ osd_file::error video_manager::open_next(emu_file &file, const char *extension)
void video_manager::record_frame()
{
// ignore if nothing to do
- if (m_mng_file == nullptr && m_avi_file == nullptr && !m_dummy_recording)
+ if (m_mng_file == nullptr && m_avi_file == nullptr)
return;
// start the profiler and get the current time