summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@gmail.com>2015-08-28 13:38:35 -0400
committer Scott Stone <tafoid@gmail.com>2015-08-28 13:38:35 -0400
commit5823b95d9bf758c5ce005d6251d90f7989433083 (patch)
treea0a7367136b189183a40900100ff9310fced50c3
parentc6d7fcd22ef7c1bf80c5ea2e70361218d17966d2 (diff)
Comment LOG lines which are causing "error: unknown conversion type character 'l' in format [-Werror=format=]" and stopping successful compile (nw)
-rw-r--r--src/mess/drivers/force68k.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mess/drivers/force68k.c b/src/mess/drivers/force68k.c
index 0d3a0371a55..20b4509c216 100644
--- a/src/mess/drivers/force68k.c
+++ b/src/mess/drivers/force68k.c
@@ -1,4 +1,4 @@
-// license:BSD-3-Clause
+// license:BSD-3-Clause
// copyright-holders:Joakim Larsson Edstr??m
/***************************************************************************
*
@@ -252,7 +252,7 @@ INPUT_PORTS_END
*/
WRITE_LINE_MEMBER (force68k_state::centronics_ack_w)
{
- LOG (logerror ("centronics_ack_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
+// LOG (logerror ("centronics_ack_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
m_centronics_ack = state;
m_pit->h1_set (state);
}
@@ -261,7 +261,7 @@ WRITE_LINE_MEMBER (force68k_state::centronics_ack_w)
* The centronics busy signal is not used by the ROM driver afaik
*/
WRITE_LINE_MEMBER (force68k_state::centronics_busy_w){
- LOG (logerror ("centronics_busy_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
+// LOG (logerror ("centronics_busy_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
m_centronics_busy = state;
}
@@ -269,7 +269,7 @@ WRITE_LINE_MEMBER (force68k_state::centronics_busy_w){
* The centronics perror signal is not used by the ROM driver afaik
*/
WRITE_LINE_MEMBER (force68k_state::centronics_perror_w){
- LOG (logerror ("centronics_perror_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
+// LOG (logerror ("centronics_perror_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
m_centronics_perror = state;
}
@@ -277,7 +277,7 @@ WRITE_LINE_MEMBER (force68k_state::centronics_perror_w){
* The centronics select signal is expected by the ROM on Port B bit 0
*/
WRITE_LINE_MEMBER (force68k_state::centronics_select_w){
- LOG (logerror ("centronics_select_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
+// LOG (logerror ("centronics_select_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
m_centronics_select = state;
m_pit->portb_setbit (0, state);
}