diff options
author | Eugene Sandulenko | 2016-08-30 09:55:20 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-30 09:55:20 +0200 |
commit | c207d703fea29f9630e4776b14d78eb8138b1aa3 (patch) | |
tree | b1a1915b82e42a57670915325aa89c8e274ced54 /engines/director/score.h | |
parent | 736f5e61db244a62c03eb1dfcfa3786f4005255a (diff) | |
download | scummvm-rg350-c207d703fea29f9630e4776b14d78eb8138b1aa3.tar.gz scummvm-rg350-c207d703fea29f9630e4776b14d78eb8138b1aa3.tar.bz2 scummvm-rg350-c207d703fea29f9630e4776b14d78eb8138b1aa3.zip |
DIRECTOR: Fixed shared cast loading
Diffstat (limited to 'engines/director/score.h')
-rw-r--r-- | engines/director/score.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/director/score.h b/engines/director/score.h index 35e6f975ea..a9ac1f97de 100644 --- a/engines/director/score.h +++ b/engines/director/score.h @@ -183,6 +183,7 @@ public: void startLoop(); void processEvents(); Archive *getArchive() const { return _movieArchive; }; + void loadConfig(Common::SeekableSubReadStreamEndian &stream); void loadCastData(Common::SeekableSubReadStreamEndian &stream); void setCurrentFrame(uint16 frameId) { _currentFrame = frameId; } Common::String getMacName() const { return _macName; } @@ -190,7 +191,6 @@ public: private: void update(); void readVersion(uint32 rid); - void loadConfig(Common::SeekableSubReadStreamEndian &stream); void loadPalette(Common::SeekableSubReadStreamEndian &stream); void loadFrames(Common::SeekableSubReadStreamEndian &stream); void loadLabels(Common::SeekableSubReadStreamEndian &stream); |