mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-13 14:21:11 +01:00
Fix build.
This commit is contained in:
parent
e22df7cc3e
commit
789e640b9d
@ -743,9 +743,9 @@ int Node::seen_by_get_count() {
|
|||||||
void Node::_propagate_pause_change_notification(int p_notification) {
|
void Node::_propagate_pause_change_notification(int p_notification) {
|
||||||
notification(p_notification);
|
notification(p_notification);
|
||||||
|
|
||||||
for (int i = 0; i < data.children.size(); i++) {
|
for (HashMap<StringName, Node *>::Element *E = data.children.front(); E; E = E->next) {
|
||||||
if (data.children[i]->data.pause_mode == PAUSE_MODE_INHERIT) {
|
if (E->value()->data.pause_mode == PAUSE_MODE_INHERIT) {
|
||||||
data.children[i]->_propagate_pause_change_notification(p_notification);
|
E->value()->_propagate_pause_change_notification(p_notification);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user