aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game/phonograph.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2017-02-13 22:40:50 -0500
committerPaul Gilbert2017-02-13 22:40:50 -0500
commit8747e59c03ee75c4c04fa09c897cd43fdf9352ea (patch)
treec7d5e45bae4f270897fdc8c18c89ee079a672fa5 /engines/titanic/game/phonograph.cpp
parent3a41bed5632fa3171473ebe8efa9048190ac7b42 (diff)
downloadscummvm-rg350-8747e59c03ee75c4c04fa09c897cd43fdf9352ea.tar.gz
scummvm-rg350-8747e59c03ee75c4c04fa09c897cd43fdf9352ea.tar.bz2
scummvm-rg350-8747e59c03ee75c4c04fa09c897cd43fdf9352ea.zip
TITANIC: Renaming of phonograph fields
Diffstat (limited to 'engines/titanic/game/phonograph.cpp')
-rw-r--r--engines/titanic/game/phonograph.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/engines/titanic/game/phonograph.cpp b/engines/titanic/game/phonograph.cpp
index 26163a74df..f43bb3a60b 100644
--- a/engines/titanic/game/phonograph.cpp
+++ b/engines/titanic/game/phonograph.cpp
@@ -34,16 +34,16 @@ BEGIN_MESSAGE_MAP(CPhonograph, CMusicPlayer)
END_MESSAGE_MAP()
CPhonograph::CPhonograph() : CMusicPlayer(),
- _isPlaying(false), _isRecording(false), _fieldE8(0), _fieldEC(0),
+ _isPlaying(false), _isRecording(false), _isDisabled(false), _fieldEC(0),
_fieldF0(0), _fieldF4(0) {
}
void CPhonograph::save(SimpleFile *file, int indent) {
file->writeNumberLine(1, indent);
- file->writeQuotedLine(_string2, indent);
+ file->writeQuotedLine(_unused, indent);
file->writeNumberLine(_isPlaying, indent);
file->writeNumberLine(_isRecording, indent);
- file->writeNumberLine(_fieldE8, indent);
+ file->writeNumberLine(_isDisabled, indent);
file->writeNumberLine(_fieldEC, indent);
file->writeNumberLine(_fieldF0, indent);
file->writeNumberLine(_fieldF4, indent);
@@ -53,10 +53,10 @@ void CPhonograph::save(SimpleFile *file, int indent) {
void CPhonograph::load(SimpleFile *file) {
file->readNumber();
- _string2 = file->readString();
+ _unused = file->readString();
_isPlaying = file->readNumber();
_isRecording = file->readNumber();
- _fieldE8 = file->readNumber();
+ _isDisabled = file->readNumber();
_fieldEC = file->readNumber();
_fieldF0 = file->readNumber();
_fieldF4 = file->readNumber();
@@ -108,23 +108,23 @@ bool CPhonograph::PhonographStopMsg(CPhonographStopMsg *msg) {
CStopMusicMsg stopMsg;
stopMsg.execute(this);
} else {
- stopGlobalSound(msg->_value1, -1);
+ stopGlobalSound(msg->_leavingRoom, -1);
}
- msg->_value2 = 1;
+ msg->_cylinderPresent = true;
}
- if (!msg->_value3)
+ if (!msg->_dontStop)
_isPlaying = false;
} else if (_isRecording) {
_isRecording = false;
- msg->_value2 = 1;
+ msg->_cylinderPresent = true;
}
return true;
}
bool CPhonograph::PhonographRecordMsg(CPhonographRecordMsg *msg) {
- if (!_isPlaying && !_isRecording && !_fieldE8) {
+ if (!_isPlaying && !_isRecording && !_isDisabled) {
CQueryCylinderHolderMsg holderMsg;
holderMsg.execute(this);
@@ -153,7 +153,7 @@ bool CPhonograph::EnterRoomMsg(CEnterRoomMsg *msg) {
bool CPhonograph::LeaveRoomMsg(CLeaveRoomMsg *msg) {
if (_isPlaying) {
CPhonographStopMsg stopMsg;
- stopMsg._value1 = 1;
+ stopMsg._leavingRoom = true;
stopMsg.execute(this);
}