tetris: kill unnecessary return in MoveRight()

This commit is contained in:
nick black 2020-04-02 12:40:38 -04:00
parent ac31bf3a12
commit d1724d6183
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -15,6 +15,5 @@ void MoveRight() {
throw TetrisNotcursesErr("render()"); throw TetrisNotcursesErr("render()");
} }
} }
return;
} }
} }