commit a7e40576178824b275a608e0390f0999b1527ad1
parent 68d95fd52d2ef2562c1b318c376586bdd32e1f93
Author: ByteProject <stefan.vogt@byteproject.net>
Date: Tue, 4 Mar 2014 22:44:56 +0100
adding fileHasSauce bool value to tundra method call
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ansilove/main.c b/ansilove/main.c
@@ -2,7 +2,7 @@
// main.c
// AnsiLove/C
//
-// Copyright (C) 2011-2013 Stefan Vogt, Brian Cassidy, Frederic Cambus.
+// Copyright (C) 2011-2014 Stefan Vogt, Brian Cassidy, Frederic Cambus.
// All rights reserved.
// https://github.com/ByteProject/AnsiLove-C/
//
@@ -102,7 +102,7 @@ void synopsis(void)
int main(int argc, char *argv[])
{
printf("AnsiLove/C %s - ANSi / ASCII art to PNG converter\n"\
- "Copyright (C) 2011-2013 Stefan Vogt, Brian Cassidy, Frederic Cambus.\n", VERSION);
+ "Copyright (C) 2011-2014 Stefan Vogt, Brian Cassidy, Frederic Cambus.\n", VERSION);
// SAUCE record related bool types
bool justDisplaySAUCE = false;
@@ -368,7 +368,7 @@ int main(int argc, char *argv[])
alIcedrawLoader(input, output, retinaout, bits, fileHasSAUCE, createRetinaRep);
}
else if (strcmp(fext, ".tnd") == 0) {
- alTundraLoader(input, output, retinaout, font, bits, createRetinaRep);
+ alTundraLoader(input, output, retinaout, font, bits, fileHasSAUCE, createRetinaRep);
fileIsTundra = true;
}
else if (strcmp(fext, ".xb") == 0) {