STARK: Fix stopping all of a location's scrolls

This commit is contained in:
Bastien Bouclet 2016-01-14 14:35:12 +01:00
parent 544f0916f1
commit 48afd2a3ce

View File

@ -298,7 +298,7 @@ void Location::setHasActiveScroll() {
}
void Location::stopAllScrolls() {
Common::Array<Scroll *> scrolls = listChildren<Scroll>();
Common::Array<Scroll *> scrolls = listChildrenRecursive<Scroll>();
for (uint i = 0; i < scrolls.size(); i++) {
scrolls[i]->stop();
}