PINK: removed unnecessary function

This commit is contained in:
Andrei Prykhodko 2018-06-30 15:30:36 +03:00
parent 5f0fec7de2
commit d0adf31467
2 changed files with 0 additions and 10 deletions

View File

@ -79,14 +79,6 @@ bool Actor::initPalette(Director *director) {
return false;
}
void Actor::preloadSprites() {
for (uint i = 0; i < _actions.size(); ++i) {
ActionCEL *cel = dynamic_cast<ActionCEL*>(_actions[i]);
if (cel)
cel->loadDecoder();
}
}
void Actor::toConsole() {
debug("Actor: _name = %s", _name.c_str());
for (uint i = 0; i < _actions.size(); ++i) {

View File

@ -50,8 +50,6 @@ public:
virtual void init(bool paused);
bool initPalette(Director *director);
void preloadSprites();
void toConsole() override;
bool isPlaying() { return !_isActionEnded; }