diff options
| author | 2019-04-13 10:29:15 -0400 | |
|---|---|---|
| committer | 2019-04-13 10:29:15 -0400 | |
| commit | 761462861fc1228e65546c4e0f877d5212320082 (patch) | |
| tree | fb067d12572db585ece48dd61a5df71b0aa0f81c /core/src | |
| parent | 64bd072a1ef349fedc1364a221a19ce71c368e72 (diff) | |
| download | cetris-761462861fc1228e65546c4e0f877d5212320082.tar.gz cetris-761462861fc1228e65546c4e0f877d5212320082.tar.bz2 cetris-761462861fc1228e65546c4e0f877d5212320082.zip | |
fix/improve windows support
Diffstat (limited to 'core/src')
| -rw-r--r-- | core/src/cetris.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/cetris.c b/core/src/cetris.c index 8e8244b..cd7086b 100644 --- a/core/src/cetris.c +++ b/core/src/cetris.c @@ -232,7 +232,7 @@ void wipe_board(struct cetris_game* g) { /* MOVEMENT FUNCTIONS */
-void move_peice(struct cetris_game* g, input_t move) {
+void move_piece(struct cetris_game* g, input_t move) {
if (!g->held_moves[move]) {
switch (move) {
case LEFT:
|