mirror of
https://github.com/tildearrow/furnace.git
synced 2024-12-29 02:51:24 +00:00
fix release logic
This commit is contained in:
parent
788ccfb334
commit
ae44cabba8
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
||||||
had=has; \
|
had=has; \
|
||||||
if (has) { \
|
if (has) { \
|
||||||
val=source[pos++]; \
|
val=source[pos++]; \
|
||||||
if (pos==sourceRel && !released) { \
|
if (sourceRel>=0 && pos>sourceRel && !released) { \
|
||||||
pos--; \
|
pos--; \
|
||||||
} \
|
} \
|
||||||
if (pos>=sourceLen) { \
|
if (pos>=sourceLen) { \
|
||||||
|
|
Loading…
Reference in a new issue