Go で書き直した Ikemen
修订版 | cb5d8468a742ca06d02bc88d2923a0b8d29d52e3 (tree) |
---|---|
时间 | 2018-01-09 18:49:59 |
作者 | suehiro <supersuehiro@user...> |
Commiter | suehiro |
表示時間 0 のフレームでループするアニメで落ちるのを修正
@@ -407,7 +407,7 @@ func (a *Animation) animSeek(elem int32) { | ||
407 | 407 | foo := true |
408 | 408 | for { |
409 | 409 | a.current = elem |
410 | - for a.curFrame().Time <= 0 && int(a.current) < len(a.frames) { | |
410 | + for int(a.current) < len(a.frames) && a.curFrame().Time <= 0 { | |
411 | 411 | if int(a.current) == len(a.frames)-1 && a.curFrame().Time == -1 { |
412 | 412 | break |
413 | 413 | } |