summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2022-03-12 14:48:18 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2022-03-12 14:48:18 -0500
commit627de7dc54b39d69dab3504a1e71e3893bb9cf02 (patch)
tree3661152cb09e8227d2ad11ac28be02fb22f4cd25
parentab9aa1538a078ce289dddfb23ff727c3f165e47d (diff)
downloadether-627de7dc54b39d69dab3504a1e71e3893bb9cf02.tar.gz
ether-627de7dc54b39d69dab3504a1e71e3893bb9cf02.tar.bz2
ether-627de7dc54b39d69dab3504a1e71e3893bb9cf02.zip
slowed the player down
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 149e1cf..2f18995 100644 --- a/src/main.cpp +++ b/src/main.cpp
@@ -119,7 +119,7 @@ bool movePlayer(Game& game, int x, int y)
119 game.player_y = y; 119 game.player_y = y;
120 game.muxer.setPlayerLoc(x, y); 120 game.muxer.setPlayerLoc(x, y);
121 game.moving = true; 121 game.moving = true;
122 game.moveProgress.start(33); 122 game.moveProgress.start(66);
123 123
124 game.dirtyLighting = true; 124 game.dirtyLighting = true;
125 125