diff --git a/src/game_api/level_api.hpp b/src/game_api/level_api.hpp index ef38e9c66..4735c1b44 100644 --- a/src/game_api/level_api.hpp +++ b/src/game_api/level_api.hpp @@ -254,9 +254,7 @@ class ThemeInfo uint32_t unknown3; uint32_t unknown4; - virtual ~ThemeInfo() - { - } + virtual ~ThemeInfo(){}; /// Sets the beehive and leprechaun flags virtual void reset_theme_flags() = 0; diff --git a/src/game_api/online.hpp b/src/game_api/online.hpp index 5e4b9cd8a..9159fa90b 100644 --- a/src/game_api/online.hpp +++ b/src/game_api/online.hpp @@ -102,6 +102,7 @@ class Online // some more stuff virtual ~Online() = 0; + // 27 virtuals, destructor probably at index 7 }; Online* get_online();