Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maybe fix ghost notes issue? #3288

Open
wants to merge 2 commits into
base: community
Choose a base branch
from
Open

Conversation

stellar-aria
Copy link
Collaborator

It definitely fixes an oversight where .insertElementIfNonePresent() was replaced with emplace() instead of operator[]/at(), as it does assignment in addition to insertion

Copy link
Contributor

github-actions bot commented Jan 16, 2025

Test Results

106 tests  ±0   106 ✅ ±0   0s ⏱️ -1s
 16 suites ±0     0 💤 ±0 
 16 files   ±0     0 ❌ ±0 

Results for commit a716008. ± Comparison against base commit 3facf8a.

♻️ This comment has been updated with latest results.

@@ -86,7 +87,7 @@ class Instrument : public Output {

virtual bool isAnyAuditioningHappening() = 0;

uint8_t defaultVelocity;
uint8_t defaultVelocity = FlashStorage::defaultVelocity;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just want to make sure, the flash storage is already read before this default variable is initialized?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good question. The timing hasn't changed by moving it here (initialization still happens at instantiation), so I presume it is fully set up.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants