Merge remote-tracking branch 'upstream/master' into theevolk-feature-soundapi

This commit is contained in:
TheEVolk
2026-04-07 18:35:39 +03:00
51 changed files with 1178 additions and 1204 deletions

View File

@@ -612,9 +612,9 @@ static inline mnode_t *node_child( const mnode_t *n, int side, const model_t *mo
}
}
return n->children_[side];
return n->children_[side ? 1 : 0];
#else
return n->children_[side];
return n->children_[side ? 1 : 0];
#endif
}