Fix examples

This commit is contained in:
Milan Nikolic 2018-10-09 12:36:54 +02:00
parent 70aa6f5da5
commit f61497c79d
7 changed files with 141 additions and 122 deletions

View file

@ -35,10 +35,10 @@ func main() {
rl.DrawRectangle(0, int32(85+40*i), screenWidth, 40, rl.Fade(rl.LightGray, 0.3))
}
rl.DrawText(droppedFiles[i], 120, int32(100), 10, rl.Gray)
rl.DrawText(droppedFiles[i], 120, int32(100+i*40), 10, rl.Gray)
}
rl.DrawText("Drop new files...", 100, int32(150), 20, rl.DarkGray)
rl.DrawText("Drop new files...", 100, int32(150+count*40), 20, rl.DarkGray)
}
rl.EndDrawing()