1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-18 23:10:26 +00:00

a CLI option to make shots non-transparent: -shott

This commit is contained in:
Zeno Rogue 2018-12-21 14:45:09 +01:00
parent be84ecb7df
commit 635c8c94dc

View File

@ -374,6 +374,9 @@ int png_read_args() {
else if(argis("-pngformat")) { else if(argis("-pngformat")) {
shift(); shotformat = argi(); shift(); shotformat = argi();
} }
else if(argis("-shott")) {
shift(); shot::transparent = argi();
}
else return 1; else return 1;
return 0; return 0;
} }