From 73678257b95f49319f7789943e4a8b1855e18c8b Mon Sep 17 00:00:00 2001 From: athrxx Date: Sun, 17 Mar 2019 22:38:30 +0100 Subject: AUDIO: (FM-TOWNS) - turn warning into debug message (no need to bother users with something that is actually intended behavior) --- audio/softsynth/fmtowns_pc98/towns_audio.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'audio') 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; -- cgit v1.2.3