From 85d70d6961ea6c237356c6fb7b5e3078561bde85 Mon Sep 17 00:00:00 2001 From: Narr the Reg <5944268+german77@users.noreply.github.com> Date: Sun, 24 May 2026 21:09:14 -0600 Subject: [PATCH] driver: Fix GraphicsDriverMgr vtable --- include/driver/aglGraphicsDriverMgr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/driver/aglGraphicsDriverMgr.h b/include/driver/aglGraphicsDriverMgr.h index 1178047..9b77499 100644 --- a/include/driver/aglGraphicsDriverMgr.h +++ b/include/driver/aglGraphicsDriverMgr.h @@ -16,8 +16,8 @@ class GraphicsDriverMgr : public sead::hostio::Node { GraphicsDriverMgr(); virtual ~GraphicsDriverMgr(); - void waitDrawDone() const; - void dumpInfo() const; + virtual void dumpInfo() const; + virtual void waitDrawDone() const; void setPointLimits(agl::DrawContext* draw_context, float min, float max) const; void setPointSize(agl::DrawContext* draw_context, float point_size) const; void setLineWidth(agl::DrawContext* draw_context, float line_width) const;