examples: fix a small tetris bug

pull/2752/head
Alexander Medvednikov 2019-11-13 06:43:05 +03:00
parent 10b0432eca
commit 714d61aed7
1 changed files with 1 additions and 1 deletions

View File

@ -422,7 +422,7 @@ fn key_down(wnd voidptr, key, code, action, mods int) {
game.get_tetro() game.get_tetro()
} }
if game.pos_x < 0 { if game.pos_x < 0 {
game.pos_x = 1 //game.pos_x = 1
} }
} }
glfw.KeyLeft { glfw.KeyLeft {