From 8f2a47206ac8bbd4aa38a94876e464db4d59aef9 Mon Sep 17 00:00:00 2001 From: smf- Date: Sat, 18 Oct 2014 11:00:46 +0000 Subject: [PATCH] compilation fix for VS14 CTP4 (nw) --- src/mess/machine/thomson.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/machine/thomson.c b/src/mess/machine/thomson.c index 7b28e642a8e..ab9a96bea09 100644 --- a/src/mess/machine/thomson.c +++ b/src/mess/machine/thomson.c @@ -1517,7 +1517,7 @@ DEVICE_IMAGE_LOAD_MEMBER( thomson_state, mo5_cartridge ) else { astring errmsg; - errmsg.printf("Invalid cartridge size %"I64FMT"d", size); + errmsg.printf("Invalid cartridge size %" I64FMT "d", size); image.seterror(IMAGE_ERROR_UNSUPPORTED, errmsg.cstr()); return IMAGE_INIT_FAIL; }