Skip to content

Commit c0831fb

Browse files
committed
Increase maximum number of lines in a project file
1 parent b65f0c9 commit c0831fb

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

Changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Version 7.6.6
2+
- Increase maximum number of files in a .side from 256 to 1024
3+
14
Version 7.6.5
25
- Fixed assignment to members of a structure return value
36

spinc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Spin to C/C++ translator
3-
* Copyright 2011-2025 Total Spectrum Software Inc.
3+
* Copyright 2011-2026 Total Spectrum Software Inc. and contributors
44
*
55
* +--------------------------------------------------------------------
66
* ¦ TERMS OF USE: MIT License
@@ -1542,7 +1542,7 @@ ProcessOneIdeInc(char *def) {
15421542
}
15431543
}
15441544

1545-
#define MAX_IDE_FILES 256
1545+
#define MAX_IDE_FILES 1024
15461546

15471547
static Module *
15481548
ParseIdeFile(Module *P, const char *fpidename, int *is_dup_ptr)

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#define VERSION_MAJOR 7
88
#define VERSION_MINOR 6
9-
#define VERSION_REV 5
9+
#define VERSION_REV 6
1010
#define BETA "-beta"
1111

1212
#define VERSIONSTR version_string

0 commit comments

Comments
 (0)