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

CLI setting -shotaa

This commit is contained in:
Zeno Rogue 2019-06-11 10:20:13 +02:00
parent 2db8eec411
commit 6185ed674e

View File

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