From f7bfa21e517915fb7de5f0ee91ad6ab1a9b8b37e Mon Sep 17 00:00:00 2001 From: HJfod <60038575+HJfod@users.noreply.github.com> Date: Sun, 19 Feb 2023 20:06:58 +0200 Subject: [PATCH] fix signed unsigned mismatch warning --- bindings/GeometryDash.bro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/GeometryDash.bro b/bindings/GeometryDash.bro index e8a22fd2..44be9ec9 100644 --- a/bindings/GeometryDash.bro +++ b/bindings/GeometryDash.bro @@ -1120,7 +1120,7 @@ class EditorPauseLayer : CCBlockLayer, FLAlertLayerProtocol { if (!EditorUI::get()) return nullptr; auto editor = LevelEditorLayer::get(); - for (auto i = 0; i < editor->getChildrenCount(); ++i) { + for (auto i = 0u; i < editor->getChildrenCount(); ++i) { if (auto layer = cast::safe_cast(editor->getChildren()->objectAtIndex(i))) { return layer; }