From 2ea4b97bd4d428ceb0fc7d3dc1da9a7e258b4636 Mon Sep 17 00:00:00 2001 From: makitard <68160015+makitard@users.noreply.github.com> Date: Thu, 25 May 2023 22:39:12 +0200 Subject: [PATCH] fix gameobject::update addr was gamemanager::update for some reason --- bindings/GeometryDash.bro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/GeometryDash.bro b/bindings/GeometryDash.bro index a9f23d3d..27fb3e81 100644 --- a/bindings/GeometryDash.bro +++ b/bindings/GeometryDash.bro @@ -3059,7 +3059,7 @@ class GameObject : CCSpritePlus { GameObject() = mac 0xdc4c0, win 0x983e0; // yeah why is this here wtf, seems life ego ctor created this ~GameObject() = mac 0x2f4ca0, win 0xcf340; - virtual void update(float) = mac 0x2fbb90, win 0xce440; + virtual void update(float) = mac 0x2fbb90, win 0x30e00; virtual void setScaleX(float) = mac 0x335b00, win 0xe5050; virtual void setScaleY(float) = mac 0x335b90, win 0xe50e0; virtual void setScale(float) = mac 0x335c20, win 0xe5170;