[Scummvm-git-logs] scummvm master -> b2cc93191a1b6024049cc575c0a646b48b342209
dreammaster
noreply at scummvm.org
Sun Jul 26 02:02:16 UTC 2026
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:
b2cc93191a MADS: NEBULAR: Rename sound files for better clarity they're ASound derived
Commit: b2cc93191a1b6024049cc575c0a646b48b342209
https://github.com/scummvm/scummvm/commit/b2cc93191a1b6024049cc575c0a646b48b342209
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2026-07-26T12:02:08+10:00
Commit Message:
MADS: NEBULAR: Rename sound files for better clarity they're ASound derived
Changed paths:
A engines/mads/dragonsphere/asound_dragonsphere.cpp
A engines/mads/dragonsphere/asound_dragonsphere.h
A engines/mads/nebular/asound_nebular.cpp
A engines/mads/nebular/asound_nebular.h
A engines/mads/phantom/asound_phantom.cpp
A engines/mads/phantom/asound_phantom.h
R engines/mads/dragonsphere/sound_dragonsphere.cpp
R engines/mads/dragonsphere/sound_dragonsphere.h
R engines/mads/nebular/sound_nebular.cpp
R engines/mads/nebular/sound_nebular.h
R engines/mads/phantom/sound_phantom.cpp
R engines/mads/phantom/sound_phantom.h
engines/mads/dragonsphere/dragonsphere.cpp
engines/mads/module.mk
engines/mads/nebular/nebular.cpp
engines/mads/phantom/phantom.cpp
diff --git a/engines/mads/dragonsphere/sound_dragonsphere.cpp b/engines/mads/dragonsphere/asound_dragonsphere.cpp
similarity index 99%
rename from engines/mads/dragonsphere/sound_dragonsphere.cpp
rename to engines/mads/dragonsphere/asound_dragonsphere.cpp
index 7e169b59f88..00e7dda45c2 100644
--- a/engines/mads/dragonsphere/sound_dragonsphere.cpp
+++ b/engines/mads/dragonsphere/asound_dragonsphere.cpp
@@ -23,7 +23,7 @@
#include "common/file.h"
#include "common/md5.h"
#include "common/textconsole.h"
-#include "mads/dragonsphere/sound_dragonsphere.h"
+#include "mads/dragonsphere/asound_dragonsphere.h"
namespace MADS {
namespace Dragonsphere {
diff --git a/engines/mads/dragonsphere/sound_dragonsphere.h b/engines/mads/dragonsphere/asound_dragonsphere.h
similarity index 100%
rename from engines/mads/dragonsphere/sound_dragonsphere.h
rename to engines/mads/dragonsphere/asound_dragonsphere.h
diff --git a/engines/mads/dragonsphere/dragonsphere.cpp b/engines/mads/dragonsphere/dragonsphere.cpp
index 0a88cb4aee8..1c93a6492d8 100644
--- a/engines/mads/dragonsphere/dragonsphere.cpp
+++ b/engines/mads/dragonsphere/dragonsphere.cpp
@@ -39,7 +39,7 @@
#include "mads/dragonsphere/dragonsphere.h"
#include "mads/dragonsphere/global.h"
#include "mads/dragonsphere/main.h"
-#include "mads/dragonsphere/sound_dragonsphere.h"
+#include "mads/dragonsphere/asound_dragonsphere.h"
#include "mads/dragonsphere/rooms/section1.h"
#include "mads/dragonsphere/rooms/section2.h"
#include "mads/dragonsphere/rooms/section3.h"
diff --git a/engines/mads/module.mk b/engines/mads/module.mk
index 663b1e060e9..f044b1b41b5 100644
--- a/engines/mads/module.mk
+++ b/engines/mads/module.mk
@@ -67,6 +67,7 @@ MODULE_OBJS := \
core/xms.o \
nebular/nebular.o \
nebular/asound.o \
+ nebular/asound_nebular.o \
nebular/console.o \
nebular/copy.o \
nebular/extra.o \
@@ -75,7 +76,6 @@ MODULE_OBJS := \
nebular/main_menu.o \
nebular/menus.o \
nebular/popup.o \
- nebular/sound_nebular.o \
nebular/mads/mads.o \
nebular/rooms/room101.o \
nebular/rooms/room102.o \
@@ -257,12 +257,12 @@ MODULE_OBJS := \
phantom/rooms/room506.o \
phantom/phantom.o \
phantom/asound.o \
+ phantom/asound_phantom.o \
phantom/catacombs.o \
phantom/global.o \
phantom/main_menu.o \
phantom/menus.o \
phantom/main.o \
- phantom/sound_phantom.o \
dragonsphere/mads/mads.o \
dragonsphere/rooms/section1.o \
dragonsphere/rooms/room101.o \
@@ -338,11 +338,11 @@ MODULE_OBJS := \
dragonsphere/rooms/room909.o \
dragonsphere/dragonsphere.o \
dragonsphere/asound.o \
+ dragonsphere/asound_dragonsphere.o \
dragonsphere/global.o \
dragonsphere/main.o \
dragonsphere/main_menu.o \
dragonsphere/menus.o \
- dragonsphere/sound_dragonsphere.o \
forest/forest.o \
forest/digi.o \
forest/extra.o \
diff --git a/engines/mads/nebular/sound_nebular.cpp b/engines/mads/nebular/asound_nebular.cpp
similarity index 99%
rename from engines/mads/nebular/sound_nebular.cpp
rename to engines/mads/nebular/asound_nebular.cpp
index 65415042f57..6c901782551 100644
--- a/engines/mads/nebular/sound_nebular.cpp
+++ b/engines/mads/nebular/asound_nebular.cpp
@@ -23,7 +23,7 @@
#include "common/algorithm.h"
#include "common/file.h"
#include "common/md5.h"
-#include "mads/nebular/sound_nebular.h"
+#include "mads/nebular/asound_nebular.h"
namespace Audio {
class Mixer;
diff --git a/engines/mads/nebular/sound_nebular.h b/engines/mads/nebular/asound_nebular.h
similarity index 100%
rename from engines/mads/nebular/sound_nebular.h
rename to engines/mads/nebular/asound_nebular.h
diff --git a/engines/mads/nebular/nebular.cpp b/engines/mads/nebular/nebular.cpp
index 09132ff4374..6d8da1c9f8e 100644
--- a/engines/mads/nebular/nebular.cpp
+++ b/engines/mads/nebular/nebular.cpp
@@ -44,7 +44,7 @@
#include "mads/nebular/popup.h"
#include "mads/nebular/mads/inventory.h"
#include "mads/nebular/mads/words.h"
-#include "mads/nebular/sound_nebular.h"
+#include "mads/nebular/asound_nebular.h"
#include "mads/nebular/rooms/section1.h"
#include "mads/nebular/rooms/section2.h"
#include "mads/nebular/rooms/section3.h"
diff --git a/engines/mads/phantom/sound_phantom.cpp b/engines/mads/phantom/asound_phantom.cpp
similarity index 99%
rename from engines/mads/phantom/sound_phantom.cpp
rename to engines/mads/phantom/asound_phantom.cpp
index 2b126860ee9..e728e1da899 100644
--- a/engines/mads/phantom/sound_phantom.cpp
+++ b/engines/mads/phantom/asound_phantom.cpp
@@ -23,7 +23,7 @@
#include "common/file.h"
#include "common/md5.h"
#include "common/textconsole.h"
-#include "mads/phantom/sound_phantom.h"
+#include "mads/phantom/asound_phantom.h"
namespace MADS {
namespace Phantom {
diff --git a/engines/mads/phantom/sound_phantom.h b/engines/mads/phantom/asound_phantom.h
similarity index 100%
rename from engines/mads/phantom/sound_phantom.h
rename to engines/mads/phantom/asound_phantom.h
diff --git a/engines/mads/phantom/phantom.cpp b/engines/mads/phantom/phantom.cpp
index 537eeea5dd3..6a189b7b251 100644
--- a/engines/mads/phantom/phantom.cpp
+++ b/engines/mads/phantom/phantom.cpp
@@ -35,7 +35,7 @@
#include "mads/core/text.h"
#include "mads/phantom/phantom.h"
#include "mads/phantom/main.h"
-#include "mads/phantom/sound_phantom.h"
+#include "mads/phantom/asound_phantom.h"
#include "mads/phantom/catacombs.h"
#include "mads/phantom/global.h"
#include "mads/phantom/rooms/section1.h"
More information about the Scummvm-git-logs
mailing list