aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/sounds.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2016-09-10 21:50:57 +0200
committerEugene Sandulenko2016-09-10 21:50:57 +0200
commit786f2449293faaa914522239fafc74559dfb5c60 (patch)
tree99e8a7de674ef7bd8684aebb65ca34d67888587c /engines/dm/sounds.cpp
parent7871874dab045b012d8a6f48fe1fb642eb0f68a6 (diff)
downloadscummvm-rg350-786f2449293faaa914522239fafc74559dfb5c60.tar.gz
scummvm-rg350-786f2449293faaa914522239fafc74559dfb5c60.tar.bz2
scummvm-rg350-786f2449293faaa914522239fafc74559dfb5c60.zip
DM: Rename _B to _Bu to avoid name clashes on some platforms
Diffstat (limited to 'engines/dm/sounds.cpp')
-rw-r--r--engines/dm/sounds.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/dm/sounds.cpp b/engines/dm/sounds.cpp
index bcc333c7b0..1a8b9a3b0f 100644
--- a/engines/dm/sounds.cpp
+++ b/engines/dm/sounds.cpp
@@ -206,8 +206,8 @@ void SoundMan::requestPlay(uint16 soundIndex, int16 mapX, int16 mapY, uint16 mod
newEvent._type = k20_TMEventTypePlaySound;
newEvent._priority = sound->_priority;
newEvent._C._soundIndex = soundIndex;
- newEvent._B._location._mapX = mapX;
- newEvent._B._location._mapY = mapY;
+ newEvent._Bu._location._mapX = mapX;
+ newEvent._Bu._location._mapY = mapY;
_vm->_timeline->addEventGetEventIndex(&newEvent);
return;
}