fix: fixed space error
This commit is contained in:
parent
bf435716e8
commit
da7c9b8eec
1 changed files with 1 additions and 2 deletions
1
main.cpp
1
main.cpp
|
@ -85,7 +85,6 @@ vector<int> move_player(vector<int> player_pos, char input)
|
||||||
// Check if it is possible to move player to target pos
|
// Check if it is possible to move player to target pos
|
||||||
if (can_move_player(player_pos, -1, 0))
|
if (can_move_player(player_pos, -1, 0))
|
||||||
--player_pos[1];
|
--player_pos[1];
|
||||||
// Actually move player
|
|
||||||
break;
|
break;
|
||||||
case 's':
|
case 's':
|
||||||
// Check if it is possible to move player to target pos
|
// Check if it is possible to move player to target pos
|
||||||
|
|
Loading…
Reference in a new issue