lego1: fix/match some ClassName functions (#60)

This commit is contained in:
Christian Semmler
2023-06-29 18:05:45 +02:00
committed by GitHub
parent 566e107290
commit 6761345c8c
8 changed files with 18 additions and 7 deletions

View File

@@ -18,7 +18,7 @@ public:
// OFFSET: LEGO1 0x1000c9b0
inline MxBool IsA(const char *name) const override // vtable+0x10
{
return !strcmp(name, LegoLoopingAnimPresenter::ClassName()) || LegoAnimPresenter::IsA(name);
return !strcmp(name, ClassName()) || LegoAnimPresenter::IsA(name);
}
};