From a3bf20571e4c21c2e00155aa65fdcc6ac9ecc100 Mon Sep 17 00:00:00 2001 From: smf- Date: Sat, 18 Oct 2014 10:51:31 +0000 Subject: [PATCH] compilation fix for VS14 CTP4 (nw) --- src/mess/drivers/ssem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/drivers/ssem.c b/src/mess/drivers/ssem.c index 0a14dec7f1a..df858d1ad5b 100644 --- a/src/mess/drivers/ssem.c +++ b/src/mess/drivers/ssem.c @@ -491,7 +491,7 @@ UINT32 ssem_state::screen_update_ssem(screen_device &screen, bitmap_rgb32 &bitma (m_store[(m_store_line << 2) | 1] << 16) | (m_store[(m_store_line << 2) | 2] << 8) | (m_store[(m_store_line << 2) | 3] << 0)); - glyph_print(bitmap, 0, 272, "LINE:%02d VALUE:%08x HALT:%"I64FMT"d", m_store_line, word, m_maincpu->state_int(SSEM_HALT)); + glyph_print(bitmap, 0, 272, "LINE:%02d VALUE:%08x HALT:%" I64FMT "d", m_store_line, word, m_maincpu->state_int(SSEM_HALT)); return 0; }