From 0999534749f6c4edb9e4d054b95f185b829adba3 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Sun, 31 May 2009 10:02:16 +0000 Subject: The error() and warning() functions add ! and newline automatically. (I didn't look at debug() and debugC(), since I'm really bored with this now. :-) svn-id: r41061 --- sound/softsynth/opl/mame.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sound/softsynth/opl') diff --git a/sound/softsynth/opl/mame.cpp b/sound/softsynth/opl/mame.cpp index 3527d63d70..559c84f717 100644 --- a/sound/softsynth/opl/mame.cpp +++ b/sound/softsynth/opl/mame.cpp @@ -1175,10 +1175,10 @@ unsigned char OPLRead(FM_OPL *OPL,int a) { /* data port */ switch(OPL->address) { case 0x05: /* KeyBoard IN */ - warning("OPL:read unmapped KEYBOARD port\n"); + warning("OPL:read unmapped KEYBOARD port"); return 0; case 0x19: /* I/O DATA */ - warning("OPL:read unmapped I/O port\n"); + warning("OPL:read unmapped I/O port"); return 0; case 0x1a: /* PCM-DATA */ return 0; -- cgit v1.2.3