Disable PIN64 logging. (nw)

This commit is contained in:
MooglyGuy 2017-02-02 01:48:13 +01:00
parent af39fe7816
commit 1ef805eb8c
2 changed files with 4 additions and 0 deletions

View File

@ -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) {

View File

@ -8,6 +8,8 @@
#include <cstdio>
#include <vector>
#define PIN64_ENABLE_CAPTURE (0)
#include "emu.h"
class pin64_fileutil_t {