Library/Sequence: Fix vtable of Sequence (#1087)

This commit is contained in:
MonsterDruide1 2026-04-22 22:45:21 +02:00 committed by GitHub
parent b847fd4117
commit 572c2d6736
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,6 +26,8 @@ public:
virtual void drawMain() const;
virtual void drawSub() const;
AudioKeeper* getAudioKeeper() const override { return mAudioKeeper; }
virtual bool isDisposable() const;
virtual Scene* getCurrentScene() const { return nullptr; }
@ -34,8 +36,6 @@ public:
void setSceneCreator(SceneCreator* sceneCreator) override { mSceneCreator = sceneCreator; }
AudioKeeper* getAudioKeeper() const override { return mAudioKeeper; }
void initAudio(const GameSystemInfo&, const char*, s32, s32, s32, const char*);
void initAudioKeeper(const char*);
void initDrawSystemInfo(const SequenceInitInfo&);