mirror of
https://github.com/yokemura/Magical8bitPlug2.git
synced 2025-05-24 23:00:21 -04:00
Parser fix
This commit is contained in:
parent
095e6a8c11
commit
e45f7aff85
@ -373,11 +373,10 @@ FrameSequence FrameSequenceParser::parse (const String& input,
|
||||
{
|
||||
if (hasRelease)
|
||||
{
|
||||
str_beforeRepeat = trimmed.substring (0, repeatStartIndex - 1);
|
||||
str_release = trimmed.substring(releaseBlockIndex, trimmed.length());
|
||||
}
|
||||
|
||||
str_insideRepeat = trimmed.substring (repeatStartIndex, repeatEndIndex);
|
||||
}
|
||||
str_beforeRepeat = trimmed.substring(0, repeatStartIndex - 1);
|
||||
str_insideRepeat = trimmed.substring (repeatStartIndex, repeatEndIndex); }
|
||||
else
|
||||
{
|
||||
if (hasRelease)
|
||||
|
Loading…
Reference in New Issue
Block a user