mirror of
https://github.com/holub/mame
synced 2025-10-07 01:16:22 +03:00
Disable PIN64 logging. (nw)
This commit is contained in:
parent
af39fe7816
commit
1ef805eb8c
@ -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) {
|
||||
|
@ -8,6 +8,8 @@
|
||||
#include <cstdio>
|
||||
#include <vector>
|
||||
|
||||
#define PIN64_ENABLE_CAPTURE (0)
|
||||
|
||||
#include "emu.h"
|
||||
|
||||
class pin64_fileutil_t {
|
||||
|
Loading…
Reference in New Issue
Block a user