diff options
author | Paul Gilbert | 2017-06-24 22:32:50 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-06-24 22:32:50 -0400 |
commit | 76e3936a8206df135ddb3d1a2fcf98fa5c683183 (patch) | |
tree | a372b20b665791092d4dcf4f2422105f97dbc404 | |
parent | b7cf99128f24469267176a3b1a19dc49b9d83696 (diff) | |
download | scummvm-rg350-76e3936a8206df135ddb3d1a2fcf98fa5c683183.tar.gz scummvm-rg350-76e3936a8206df135ddb3d1a2fcf98fa5c683183.tar.bz2 scummvm-rg350-76e3936a8206df135ddb3d1a2fcf98fa5c683183.zip |
TITANIC: Fix saving bass direction state onto music cylinders
-rw-r--r-- | engines/titanic/carry/phonograph_cylinder.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/titanic/carry/phonograph_cylinder.cpp b/engines/titanic/carry/phonograph_cylinder.cpp index fa260ef876..45cca3776c 100644 --- a/engines/titanic/carry/phonograph_cylinder.cpp +++ b/engines/titanic/carry/phonograph_cylinder.cpp @@ -159,6 +159,8 @@ bool CPhonographCylinder::RecordOntoCylinderMsg(CRecordOntoCylinderMsg *msg) { _bassPitchControl = queryMsg._value; queryMsg.execute("Bass Inversion Control"); _bassInversionControl = queryMsg._value; + queryMsg.execute("Bass Direction Control"); + _bassDirectionControl = queryMsg._value; return true; } |