avoid cheese comment alignment

This commit is contained in:
faiface 2017-01-14 16:20:31 +01:00
parent c9f445787e
commit 2848ee5c0c
1 changed files with 4 additions and 3 deletions

View File

@ -372,9 +372,10 @@ func (wt *windowTriangles) Len() int {
}
func (wt *windowTriangles) Draw() {
pic := wt.w.pic // avoid
mat := wt.w.mat // race
col := wt.w.col // condition
// avoid possible race condition
pic := wt.w.pic
mat := wt.w.mat
col := wt.w.col
bnd := wt.w.bnd
pixelgl.DoNoBlock(func() {