mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-25 20:42:07 +00:00
rgbasm -r sets the maximum recursion depth (#1026)
Previously it set the minimum failure depth (off by one) Fixes #978
This commit is contained in:
@@ -181,7 +181,7 @@ int main(int argc, char *argv[])
|
||||
verbose = false;
|
||||
warnings = true;
|
||||
sym_SetExportAll(false);
|
||||
uint32_t maxDepth = 64;
|
||||
uint32_t maxDepth = DEFAULT_MAX_DEPTH;
|
||||
size_t targetFileNameLen = 0;
|
||||
|
||||
while ((ch = musl_getopt_long_only(argc, argv, optstring, longopts, NULL)) != -1) {
|
||||
|
||||
Reference in New Issue
Block a user