From 5ae3f07c3ac16c3255ed5b7792c17545c7667ac3 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Sun, 7 Jan 2024 19:35:51 +0100 Subject: [PATCH] forgot about the move constructor --- solanaceae/plugin/plugin.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/solanaceae/plugin/plugin.cpp b/solanaceae/plugin/plugin.cpp index fd873d2..75a9f63 100644 --- a/solanaceae/plugin/plugin.cpp +++ b/solanaceae/plugin/plugin.cpp @@ -105,6 +105,9 @@ Plugin::Plugin(Plugin&& other) { _fn_tick = other._fn_tick; other._fn_tick = nullptr; + + _fn_render = other._fn_render; + other._fn_render = nullptr; } // unloads the plugin