1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 14:37:16 +00:00

fixed the shot:: commands

This commit is contained in:
Zeno Rogue 2020-05-25 02:32:06 +02:00
parent a6acc5375e
commit 31fba0fb6e

View File

@ -823,19 +823,19 @@ int png_read_args() {
else if(argis("-shot-fhd")) { else if(argis("-shot-fhd")) {
shot::shotformat = -1; shot::shotformat = -1;
shot::shotx = 1920; shot::shotx = 1920;
shot::shotx = 1080; shot::shoty = 1080;
shot::transparent = false; shot::transparent = false;
} }
else if(argis("-shot-hd")) { else if(argis("-shot-hd")) {
shot::shotformat = -1; shot::shotformat = -1;
shot::shotx = 1280; shot::shotx = 1280;
shot::shotx = 720; shot::shoty = 720;
shot::transparent = false; shot::transparent = false;
} }
else if(argis("-shot-1000")) { else if(argis("-shot-1000")) {
shot::shotformat = -1; shot::shotformat = -1;
shot::shotx = 1000; shot::shotx = 1000;
shot::shotx = 1000; shot::shoty = 1000;
shot::transparent = false; shot::transparent = false;
} }
else if(argis("-shotaa")) { else if(argis("-shotaa")) {