diff options
-rw-r--r-- | screen_ui.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/screen_ui.cpp b/screen_ui.cpp index b4ef054ce..e8444b6ca 100644 --- a/screen_ui.cpp +++ b/screen_ui.cpp @@ -176,6 +176,8 @@ ScreenRecoveryUI::~ScreenRecoveryUI() { if (progress_thread_.joinable()) { progress_thread_.join(); } + // No-op if gr_init() (via Init()) was not called or had failed. + gr_exit(); } GRSurface* ScreenRecoveryUI::GetCurrentFrame() const { |