diff options
Diffstat (limited to 'apps/muxpsdraw.c')
-rw-r--r-- | apps/muxpsdraw.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/apps/muxpsdraw.c b/apps/muxpsdraw.c index 6856338c..74220da6 100644 --- a/apps/muxpsdraw.c +++ b/apps/muxpsdraw.c @@ -270,19 +270,17 @@ int main(int argc, char **argv) #endif { int grayscale = 0; - int accelerate = 1; xps_document *doc = NULL; int c; fz_var(doc); - while ((c = fz_getopt(argc, argv, "o:p:r:Aadglmtx5")) != -1) + while ((c = fz_getopt(argc, argv, "o:p:r:adglmtx5")) != -1) { switch (c) { case 'o': output = fz_optarg; break; case 'r': resolution = atof(fz_optarg); break; - case 'A': accelerate = 0; break; case 'a': savealpha = 1; break; case 'l': showoutline++; break; case 'm': showtime++; break; @@ -304,9 +302,6 @@ int main(int argc, char **argv) exit(0); } - if (accelerate) - fz_accelerate(); - ctx = fz_new_context(NULL, NULL, FZ_STORE_DEFAULT); if (!ctx) { |