Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
C
crowbx
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacob Vosmaer
crowbx
Commits
3c42989b
Commit
3c42989b
authored
May 25, 2020
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify poly2 assign loop
parent
75a66c48
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
crowbx.c
crowbx.c
+2
-7
No files found.
crowbx.c
View file @
3c42989b
...
...
@@ -312,15 +312,10 @@ void poly2_init(void) {
}
void
poly2_assign_available_voices
(
void
)
{
for
(;
!
l_empty
(
&
poly2
.
available_voices
);)
{
for
(;
!
l_empty
(
&
poly2
.
available_voices
)
&&
!
l_empty
(
&
poly2
.
note_queue
);)
{
uint8_t
v
=
l_popr
(
&
poly2
.
available_voices
);
uint8_t
note
=
l_popr
(
&
poly2
.
note_queue
);
if
(
note
==
poly2
.
note_queue
.
sup
)
{
l_pushr
(
&
poly2
.
available_voices
,
v
);
return
;
}
gate_on
(
v
);
pitch_set_note
(
v
,
note
,
0
);
poly2
.
current_note
[
v
]
=
note
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment