From e2d7b2cf03b41008deeac0a67afa54ac715a1ac5 Mon Sep 17 00:00:00 2001 From: Hielke Morsink Date: Thu, 30 May 2019 17:21:43 +0200 Subject: [PATCH] Use new setting in screenshot command too --- src/openrct2/interface/Screenshot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/interface/Screenshot.cpp b/src/openrct2/interface/Screenshot.cpp index 6cdaf49e18..960752787c 100644 --- a/src/openrct2/interface/Screenshot.cpp +++ b/src/openrct2/interface/Screenshot.cpp @@ -605,7 +605,7 @@ int32_t cmdline_for_screenshot(const char** argv, int32_t argc, ScreenshotOption CheatsSet(CheatType::RemoveLitter); } - if (options->transparent) + if (options->transparent || gConfigGeneral.transparent_screenshot) { viewport.flags |= VIEWPORT_FLAG_TRANSPARENT_BACKGROUND; }