[nostalgia/core,turbine] Give Turbine and NostalgiaCore Context types virtual destructors

This commit is contained in:
2023-06-27 19:38:16 -05:00
parent de6308418e
commit 39eb82596b
3 changed files with 3 additions and 2 deletions

View File

@ -64,7 +64,7 @@ class Context {
Context(const Context &&other) noexcept = delete;
public:
inline ~Context() noexcept {
virtual inline ~Context() noexcept {
shutdown(*this);
}