mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Fix range-dependent dead code in recursion depth check
This commit is contained in:
@@ -39,7 +39,7 @@ struct sContext {
|
||||
int32_t nREPTBodyLastLine;
|
||||
};
|
||||
|
||||
extern unsigned int nMaxRecursionDepth;
|
||||
extern size_t nMaxRecursionDepth;
|
||||
|
||||
void fstk_AddIncludePath(char const *s);
|
||||
/**
|
||||
@@ -61,6 +61,6 @@ char *fstk_DumpToStr(void);
|
||||
char const *fstk_GetFileName(void);
|
||||
uint32_t fstk_GetLine(void);
|
||||
|
||||
void fstk_Init(char *mainPath, uint32_t maxRecursionDepth);
|
||||
void fstk_Init(char *mainPath, size_t maxRecursionDepth);
|
||||
|
||||
#endif /* RGBDS_ASM_FSTACK_H */
|
||||
|
||||
Reference in New Issue
Block a user