# HG changeset patch # User Matti Hamalainen # Date 1425218113 -7200 # Node ID f530690b75ad7394250faf83af5da9362b08b5f7 # Parent 021e76f94dcb7b4f018b91d7d8ca05f927e5df31 Oops .. the file exclusion option wasn't working correctly due to a silly bug (increasing wrong index variable). Fixed. diff -r 021e76f94dcb -r f530690b75ad tools/packed.c --- 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 {