Fix ineffectual assignments

This commit is contained in:
Milan Nikolic 2017-02-25 09:55:15 +01:00
parent 17941ec954
commit 6bcfa21235
3 changed files with 6 additions and 9 deletions

View file

@ -39,9 +39,6 @@ func main() {
checked := raylib.LoadTextureFromImage(checkedIm)
raylib.UnloadImage(checkedIm) // Unload CPU (RAM) image data
// Dynamic memory must be freed after using it
pixels = nil // Unload CPU (RAM) pixels data
raylib.SetTargetFPS(60)
for !raylib.WindowShouldClose() {