diff options
author | 2014-06-02 19:25:47 +0000 | |
---|---|---|
committer | 2014-06-02 19:25:47 +0000 | |
commit | 65e9134c917bcdcfad28e9be104368c73f95e29c (patch) | |
tree | 0ddfc98e04f2f41d499203c00082af4aaf89c195 /src/emu/bus/msx_cart | |
parent | 519dfaece717102336f8f3bffc8b52e2a681a04f (diff) |
don't log to stdout (nw)
Diffstat (limited to 'src/emu/bus/msx_cart')
-rw-r--r-- | src/emu/bus/msx_cart/hfox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/bus/msx_cart/hfox.c b/src/emu/bus/msx_cart/hfox.c index 695845a54e2..24ee0bcaa39 100644 --- a/src/emu/bus/msx_cart/hfox.c +++ b/src/emu/bus/msx_cart/hfox.c @@ -71,7 +71,7 @@ WRITE8_MEMBER(msx_cart_hfox::write_cart) break; default: - printf("msx_cart_hfox: unhandled write %02x to %04x\n", data, offset); + logerror("msx_cart_hfox: unhandled write %02x to %04x\n", data, offset); break; } } |