mirror of
https://github.com/yokemura/Magical8bitPlug2.git
synced 2025-07-17 11:04:16 -04:00
Parser fix
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user