Merge pull request #54 from justinclift/mouse_wheel_square_v1

Minor typo fix
This commit is contained in:
Milan Nikolic 2018-09-08 14:23:22 +02:00 committed by GitHub
commit 39fc0e1974
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@ func main() {
raylib.DrawRectangle(screenWidth/2-40, boxPositionY, 80, 80, raylib.Maroon)
raylib.DrawText("Use mouse wheel to move the cube up and down!", 10, 10, 20, raylib.Gray)
raylib.DrawText("Use mouse wheel to move the square up and down!", 10, 10, 20, raylib.Gray)
raylib.DrawText(fmt.Sprintf("Box position Y: %d", boxPositionY), 10, 40, 20, raylib.LightGray)
raylib.EndDrawing()