Skip to content

Commit 18e3d86

Browse files
authored
Increased the maximum number of user-defined temperaments to 999 #1982 (#2084)
1 parent 60208d5 commit 18e3d86

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- Increased the maximum number of user-defined temperaments to 999 https://github.com/GrandOrgue/grandorgue/issues/1982
12
# 3.15.4 (2024-12-20)
23
- Eliminated a MacOs debug alert when opening a settings dialog https://github.com/GrandOrgue/grandorgue/issues/2003
34
- Fixed not releasing a pipe after fast switching between vave-based tremulant samples and regular pipe samples https://github.com/GrandOrgue/grandorgue/issues/2004

src/core/go_limits.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2006 Milan Digital Audio LLC
3-
* Copyright 2009-2023 GrandOrgue contributors (see AUTHORS)
3+
* Copyright 2009-2025 GrandOrgue contributors (see AUTHORS)
44
* License GPL-2.0 or later
55
* (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
66
*/
@@ -13,6 +13,6 @@
1313
#define MAX_POLYPHONY 100000
1414
#define MAX_MIDI_DEVICES 50000
1515
#define MAX_SAMPLE_LENGTH 158760000
16-
#define MAX_TEMPERAMENTS 10
16+
#define MAX_TEMPERAMENTS 999 // limited by the format of setting keys
1717

1818
#endif

0 commit comments

Comments
 (0)