aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/video.cpp
diff options
context:
space:
mode:
authorStrangerke2017-01-01 22:18:09 -0800
committerEugene Sandulenko2017-01-25 22:42:19 +0100
commit448fe6303b0f4a5c33862ddaac0f8556b33d2f37 (patch)
treea4275d325ee80cce8a01741eca1244b72069f38a /engines/cryo/video.cpp
parentff1f3209801b264e9cd7ff7eafb87fde728fd63e (diff)
downloadscummvm-rg350-448fe6303b0f4a5c33862ddaac0f8556b33d2f37.tar.gz
scummvm-rg350-448fe6303b0f4a5c33862ddaac0f8556b33d2f37.tar.bz2
scummvm-rg350-448fe6303b0f4a5c33862ddaac0f8556b33d2f37.zip
CRYO: Fix conditional compilation related to endianness, some renaming
Diffstat (limited to 'engines/cryo/video.cpp')
-rw-r--r--engines/cryo/video.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cryo/video.cpp b/engines/cryo/video.cpp
index f76da76f60..104620466b 100644
--- a/engines/cryo/video.cpp
+++ b/engines/cryo/video.cpp
@@ -55,13 +55,13 @@ hnm_t *HnmPlayer::resetInternals() {
hnm_t *hnm = (hnm_t *)malloc(sizeof(*hnm));
hnm->_frameNum = 0;
- hnm->ff_4 = 0;
+ hnm->_unused04 = 0;
hnm->_file = nullptr;
hnm->tmpBuffer[0] = nullptr;
hnm->tmpBuffer[1] = nullptr;
hnm->finalBuffer = nullptr;
hnm->_readBuffer = nullptr;
- hnm->ff_896 = 0;
+ hnm->_unused896 = 0;
hnm->_totalRead = 0;
for (int i = 0; i < 256; i++) {
hnm->_palette[i].a = 0;
@@ -92,7 +92,7 @@ void HnmPlayer::resetInternalTimer() {
// Original name: CLHNM_Reset
void HnmPlayer::reset(hnm_t *hnm) {
hnm->_frameNum = 0;
- hnm->ff_4 = 0;
+ hnm->_unused04 = 0;
hnm->_totalRead = 0;
_soundStarted = false;
_pendingSounds = 0;