From 55c8c023fd45cfe7b7973760393e7059ed8478ef Mon Sep 17 00:00:00 2001 From: tim lindner Date: Wed, 2 Jun 2021 09:25:33 -0700 Subject: remove space before end parentheses in log statements --- src/mame/machine/6883sam.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mame/machine/6883sam.cpp b/src/mame/machine/6883sam.cpp index 7abff7a9160..b505a1f097e 100644 --- a/src/mame/machine/6883sam.cpp +++ b/src/mame/machine/6883sam.cpp @@ -387,7 +387,7 @@ void sam6883_device::internal_write(offs_t offset, uint8_t data) /* Video frame buffer address changed */ LOGFBITS("%s: SAM F Address: $%04x\n", machine().describe_context(), - display_offset() ); + display_offset()); } if (xorval & (SAM_STATE_V0|SAM_STATE_V1|SAM_STATE_V2)) @@ -395,7 +395,7 @@ void sam6883_device::internal_write(offs_t offset, uint8_t data) /* Video frame buffer address changed */ LOGVBITS("%s: SAM V Bits: $%02x\n", machine().describe_context(), - (m_sam_state & (SAM_STATE_V0|SAM_STATE_V1|SAM_STATE_V2)) ); + (m_sam_state & (SAM_STATE_V0|SAM_STATE_V1|SAM_STATE_V2))); } if (xorval & (SAM_STATE_P1)) @@ -403,7 +403,7 @@ void sam6883_device::internal_write(offs_t offset, uint8_t data) /* Video frame buffer address changed */ LOGPBITS("%s: SAM P1 Bit: $%02x\n", machine().describe_context(), - (m_sam_state & (SAM_STATE_P1)) >> 10 ); + (m_sam_state & (SAM_STATE_P1)) >> 10); } if (xorval & (SAM_STATE_TY)) @@ -411,7 +411,7 @@ void sam6883_device::internal_write(offs_t offset, uint8_t data) /* Video frame buffer address changed */ LOGTBITS("%s: SAM TY Bits: $%02x\n", machine().describe_context(), - (m_sam_state & (SAM_STATE_TY)) >> 15 ); + (m_sam_state & (SAM_STATE_TY)) >> 15); } if (xorval & (SAM_STATE_M0|SAM_STATE_M1)) @@ -419,7 +419,7 @@ void sam6883_device::internal_write(offs_t offset, uint8_t data) /* Video frame buffer address changed */ LOGMBITS("%s: SAM M Bits: $%02x\n", machine().describe_context(), - (m_sam_state & (SAM_STATE_M0|SAM_STATE_M1)) >> 9 ); + (m_sam_state & (SAM_STATE_M0|SAM_STATE_M1)) >> 9); } if (xorval & (SAM_STATE_R0|SAM_STATE_R1)) @@ -427,7 +427,7 @@ void sam6883_device::internal_write(offs_t offset, uint8_t data) /* Video frame buffer address changed */ LOGRBITS("%s: SAM R Bits: $%02x\n", machine().describe_context(), - (m_sam_state & (SAM_STATE_R0|SAM_STATE_R1)) >> 11 ); + (m_sam_state & (SAM_STATE_R0|SAM_STATE_R1)) >> 11); } } -- cgit v1.2.3