Skip to content
Snippets Groups Projects
Commit 1254f691 authored by Lactozilla's avatar Lactozilla :speech_balloon:
Browse files

Fix unused variable warning when USE_APNG is not defined

parent 8c975837
No related branches found
No related tags found
1 merge request!1343Fix unused variable warning when USE_APNG is not defined
......@@ -165,7 +165,9 @@ consvar_t cv_zlib_window_bitsa = CVAR_INIT ("apng_window_size", "32k", CV_SAVE,
consvar_t cv_apng_delay = CVAR_INIT ("apng_speed", "1x", CV_SAVE, apng_delay_t, NULL);
consvar_t cv_apng_downscale = CVAR_INIT ("apng_downscale", "On", CV_SAVE, CV_OnOff, NULL);
#ifdef USE_APNG
static boolean apng_downscale = false; // So nobody can do something dumb like changing cvars mid output
#endif
boolean takescreenshot = false; // Take a screenshot this tic
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment