Skip to content

Commit 39b7090

Browse files
committed
fix ccarrayext
1 parent 9d15112 commit 39b7090

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/GeometryDash.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ void DevTools::drawHighlight(CCNode* node, HighlightMode mode) {
253253
void DevTools::drawLayoutHighlights(CCNode* node) {
254254
// TODO: undo later
255255
#if 0
256-
for (auto child : ranges::reverse(CCArrayExt<CCNode>(node->getChildren()))) {
256+
for (auto child : ranges::reverse(CCArrayExt<CCNode*>(node->getChildren()))) {
257257
if (!child->isVisible()) continue;
258258
if (child->getLayout()) {
259259
this->drawHighlight(child, HighlightMode::Layout);

0 commit comments

Comments
 (0)