aboutsummaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorathrxx2019-03-17 22:38:30 +0100
committerathrxx2019-03-22 21:03:53 +0100
commit73678257b95f49319f7789943e4a8b1855e18c8b (patch)
tree2d43b5ac72f60dfd2429e74d493d7f2d670cfc78 /audio
parent14b03594c9d4022c2dc621adb9f0a9dad3d630dd (diff)
downloadscummvm-rg350-73678257b95f49319f7789943e4a8b1855e18c8b.tar.gz
scummvm-rg350-73678257b95f49319f7789943e4a8b1855e18c8b.tar.bz2
scummvm-rg350-73678257b95f49319f7789943e4a8b1855e18c8b.zip
AUDIO: (FM-TOWNS) - turn warning into debug message
(no need to bother users with something that is actually intended behavior)
Diffstat (limited to 'audio')
-rw-r--r--audio/softsynth/fmtowns_pc98/towns_audio.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/audio/softsynth/fmtowns_pc98/towns_audio.cpp b/audio/softsynth/fmtowns_pc98/towns_audio.cpp
index 7d61631936..937b9bdbf0 100644
--- a/audio/softsynth/fmtowns_pc98/towns_audio.cpp
+++ b/audio/softsynth/fmtowns_pc98/towns_audio.cpp
@@ -23,6 +23,7 @@
#include "audio/softsynth/fmtowns_pc98/towns_audio.h"
#include "audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.h"
+#include "common/debug.h"
#include "common/endian.h"
#include "common/util.h"
#include "common/textconsole.h"
@@ -730,8 +731,8 @@ int TownsAudioInterfaceInternal::intf_loadSamples(va_list &args) {
if (size + dest > 65536)
// EOB II FM-TOWNS tries to load more than 65536 bytes of wave sounds for the outro sequence.
// This means that some sfx would not play. Since we don't really need the memory limit,
- // I have commented out the error return and added a warning instead.
- warning("FM-TOWNS AUDIO: exceeding wave memory size by %d bytes", size + dest - 65536);
+ // I have commented out the error return and added a debug message instead.
+ debugN(9, "FM-TOWNS AUDIO: exceeding wave memory size by %d bytes", size + dest - 65536);
// return 5;
int dwIndex = _numWaveTables - 1;