diff --git a/Source/Core/DolphinQt/GBAWidget.h b/Source/Core/DolphinQt/GBAWidget.h index f1309a7ae2..8244b77319 100644 --- a/Source/Core/DolphinQt/GBAWidget.h +++ b/Source/Core/DolphinQt/GBAWidget.h @@ -35,7 +35,7 @@ class GBAWidget : public QWidget public: explicit GBAWidget(std::weak_ptr core, const HW::GBA::CoreInfo& info, const std::optional& netplay_pad); - ~GBAWidget(); + ~GBAWidget() override; void GameChanged(const HW::GBA::CoreInfo& info); void SetVideoBuffer(std::span video_buffer); @@ -103,7 +103,7 @@ class GBAWidgetController : public QObject Q_OBJECT public: explicit GBAWidgetController() = default; - ~GBAWidgetController(); + ~GBAWidgetController() override; void Create(std::weak_ptr core, const HW::GBA::CoreInfo& info); void GameChanged(const HW::GBA::CoreInfo& info);