1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-24 17:10:36 +00:00

CLI option for vertical shots

This commit is contained in:
Zeno Rogue 2021-03-06 11:48:15 +01:00
parent 0020957906
commit 250909a6f3

View File

@ -858,6 +858,12 @@ int png_read_args() {
shot::shoty = 1000;
shot::transparent = false;
}
else if(argis("-shot-vertical")) {
shot::shotformat = -1;
shot::shotx = 720;
shot::shoty = 1080;
shot::transparent = false;
}
else if(argis("-shotaa")) {
shift(); shot_aa = argi();
}