[Scummvm-git-logs] scummvm master -> fc362fe61e3f23f289165d3854b1a3beb3514480
aquadran
noreply at scummvm.org
Wed Jun 11 12:07:55 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
fc362fe61e WINTERMUTE: Put back warning for full WME engine
Commit: fc362fe61e3f23f289165d3854b1a3beb3514480
https://github.com/scummvm/scummvm/commit/fc362fe61e3f23f289165d3854b1a3beb3514480
Author: PaweÅ KoÅodziejski (aquadran at gmail.com)
Date: 2025-06-11T14:07:46+02:00
Commit Message:
WINTERMUTE: Put back warning for full WME engine
Changed paths:
engines/wintermute/base/sound/base_sound_buffer.cpp
diff --git a/engines/wintermute/base/sound/base_sound_buffer.cpp b/engines/wintermute/base/sound/base_sound_buffer.cpp
index 811aafb56de..70fa708600d 100644
--- a/engines/wintermute/base/sound/base_sound_buffer.cpp
+++ b/engines/wintermute/base/sound/base_sound_buffer.cpp
@@ -290,14 +290,14 @@ bool BaseSoundBuffer::setPan(float pan) {
//////////////////////////////////////////////////////////////////////////
bool BaseSoundBuffer::applyFX(TSFXType type, float param1, float param2, float param3, float param4) {
- // This function was already stubbed out in WME Lite, and thus isn't reimplemented here either.
+ // This function was stubbed out in WME Lite.
switch (type) {
case SFX_ECHO:
- //warning("BaseSoundBuffer::ApplyFX(SFX_ECHO, %f, %f, %f, %f) - not implemented yet", param1, param2, param3, param4);
+ warning("BaseSoundBuffer::ApplyFX(SFX_ECHO, %f, %f, %f, %f) - not implemented yet", param1, param2, param3, param4);
break;
case SFX_REVERB:
- //warning("BaseSoundBuffer::ApplyFX(SFX_REVERB, %f, %f, %f, %f) - not implemented yet", param1, param2, param3, param4);
+ warning("BaseSoundBuffer::ApplyFX(SFX_REVERB, %f, %f, %f, %f) - not implemented yet", param1, param2, param3, param4);
break;
default:
More information about the Scummvm-git-logs
mailing list