diff options
author | Torbjörn Andersson | 2009-05-31 10:02:16 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2009-05-31 10:02:16 +0000 |
commit | 0999534749f6c4edb9e4d054b95f185b829adba3 (patch) | |
tree | 55744aee72afd7cc699213a88be65938e70fa0a0 /sound/softsynth | |
parent | 3b311c65d0140e8bf727910d230ffd7a7f803761 (diff) | |
download | scummvm-rg350-0999534749f6c4edb9e4d054b95f185b829adba3.tar.gz scummvm-rg350-0999534749f6c4edb9e4d054b95f185b829adba3.tar.bz2 scummvm-rg350-0999534749f6c4edb9e4d054b95f185b829adba3.zip |
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
Diffstat (limited to 'sound/softsynth')
-rw-r--r-- | sound/softsynth/opl/mame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; |