changeset 1021:f530690b75ad

Oops .. the file exclusion option wasn't working correctly due to a silly bug (increasing wrong index variable). Fixed.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 01 Mar 2015 15:55:13 +0200
parents 021e76f94dcb
children 0020c192c8dd
files tools/packed.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tools/packed.c	Sun Mar 01 15:53:14 2015 +0200
+++ b/tools/packed.c	Sun Mar 01 15:55:13 2015 +0200
@@ -130,8 +130,7 @@
         case 9:
             if (nexcFilenames < SET_MAX_FILES)
             {
-                excFilenames[nsrcFilenames] = currArg;
-                nexcFilenames++;
+                excFilenames[nexcFilenames++] = currArg;
             }
             else
             {