From 8545c7d66f63f316adea4aef172eda8d2a0e9679 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 5 Aug 2021 13:22:29 +0200 Subject: [PATCH] shot:: more 16:9 formats --- screenshot.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/screenshot.cpp b/screenshot.cpp index 86a1b73a..d7bb090d 100644 --- a/screenshot.cpp +++ b/screenshot.cpp @@ -854,6 +854,18 @@ int png_read_args() { shot::shoty = 720; shot::transparent = false; } + else if(argis("-shot-qfhd")) { + shot::shotformat = -1; + shot::shotx = 960; + shot::shoty = 540; + shot::transparent = false; + } + else if(argis("-shot-qhd")) { + shot::shotformat = -1; + shot::shotx = 640; + shot::shoty = 360; + shot::transparent = false; + } else if(argis("-shot-1000")) { shot::shotformat = -1; shot::shotx = 1000;