Fixed printf to give a linefeed so "Average Speed:" is located in its own line as expected (nw)

This commit is contained in:
Scott Stone 2016-07-18 19:47:51 -04:00
parent f7a17cb923
commit e6a3ff36df

View File

@ -165,7 +165,7 @@ READ8_MEMBER( molecula_state::sio_r)
WRITE8_MEMBER( molecula_state::sio_w)
{
if(offset == 0)
printf("%c",data);
printf("%c\n",data);
}
static ADDRESS_MAP_START( molecula_file_map, AS_PROGRAM, 8, molecula_state )