-
-
Notifications
You must be signed in to change notification settings - Fork 58
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
GCSW drumkit bugs #263
GCSW drumkit bugs #263
Conversation
The velcurve logic now uses the same as sfz v2 curves
Confirmed yes, I was able to make similar observations and it was a reason for disabling the following unit test cases. Lines 349 to 356 in 6043627
It's quite possible that ARIA uses stdlib.h conversions internally, but I suspect there is more than that. |
In this particular case Sforzando read it as 57 doesn't it? At least it seemed so in my test. The issue is that in such cases sfizz does ignore it. The proper test should thus be // It is the shorter matching $-variable which matches among both.
// The rest of the variable name creates some trailing junk text
// which Sforzando accepts without warning. (eg. `key=57Edge`)
REQUIRE( synth.getRegionView(0)->keyRange.getStart() == 57 );
REQUIRE( synth.getRegionView(0)->keyRange.getEnd() == 57 ); This was a crash cymbal that was suppose to be on note 52. The |
On the test yes, I recall it's something like that. |
key=64Garbage
, it seems that ARIA actually readskey=64
and ignores theGarbage
.