From 1ef805eb8c9774508224ffd28987b1af1a062fa2 Mon Sep 17 00:00:00 2001 From: MooglyGuy Date: Thu, 2 Feb 2017 01:48:13 +0100 Subject: [PATCH] Disable PIN64 logging. (nw) --- src/mame/video/pin64.cpp | 2 ++ src/mame/video/pin64.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/mame/video/pin64.cpp b/src/mame/video/pin64.cpp index c48984ab6c2..0a4ef2bc636 100644 --- a/src/mame/video/pin64.cpp +++ b/src/mame/video/pin64.cpp @@ -278,6 +278,7 @@ void pin64_t::mark_frame(running_machine& machine) { } } +#if PIN64_ENABLE_CAPTURE if (machine.input().code_pressed_once(KEYCODE_N) && !m_capture_file) { start(1); machine.popmessage("Capturing PIN64 snapshot to pin64_%d.cap", m_capture_index - 1); @@ -290,6 +291,7 @@ void pin64_t::mark_frame(running_machine& machine) { machine.popmessage("Recording PIN64 movie to pin64_%d.cap", m_capture_index - 1); } } +#endif } void pin64_t::command(uint64_t* cmd_data, uint32_t size) { diff --git a/src/mame/video/pin64.h b/src/mame/video/pin64.h index d96390a1284..75b18afd89c 100644 --- a/src/mame/video/pin64.h +++ b/src/mame/video/pin64.h @@ -8,6 +8,8 @@ #include #include +#define PIN64_ENABLE_CAPTURE (0) + #include "emu.h" class pin64_fileutil_t {