diff --git a/screenshot.cpp b/screenshot.cpp index 77d16c3c..1a4b3a86 100644 --- a/screenshot.cpp +++ b/screenshot.cpp @@ -212,6 +212,9 @@ int read_args() { else if(argis("-svggamma")) { shift_arg_formula(shot::gamma); } + else if(argis("-svgfade")) { + shift_arg_formula(shot::fade); + } else if(argis("-svgshot")) { PHASE(3); shift(); start_game(); printf("saving SVG screenshot to %s\n", argcs()); @@ -821,6 +824,9 @@ int png_read_args() { else if(argis("-shotxy")) { shift(); shotformat = -1; shotx = argi(); shift(); shoty = argi(); } + else if(argis("-shothud")) { + shift(); hide_hud = !argi(); + } else if(argis("-shott")) { shift(); shot::transparent = argi(); }