From a91187d8dc823677dc0d1edab56d31e3eca14aeb Mon Sep 17 00:00:00 2001 From: AntonioND Date: Sun, 22 Jan 2017 23:08:00 +0000 Subject: [PATCH] Increase number of include paths through CLI Increase number of include paths that can be passed through the command line interface. The previous number, 16, is only good enough for small projects. 128 is still an arbitrary number, but it is harder to reach. --- include/asm/asm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/asm/asm.h b/include/asm/asm.h index 1f70f6f7..609de1c0 100644 --- a/include/asm/asm.h +++ b/include/asm/asm.h @@ -30,6 +30,6 @@ extern struct sSymbol *pPCSymbol; extern bool oDontExpandStrings; #define MAXMACROARGS 256 -#define MAXINCPATHS 16 +#define MAXINCPATHS 128 #endif /* // ASM_H */