summaryrefslogtreecommitdiffhomepage
path: root/src/character.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/character.cpp')
-rw-r--r--src/character.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/character.cpp b/src/character.cpp
index a2098788..88b55d45 100644
--- a/src/character.cpp
+++ b/src/character.cpp
@@ -17,7 +17,7 @@ namespace {
template <typename T> constexpr T sgn(T val) { return T(T(0) < val) - T(val < T(0)); }
constexpr int tile_size_1 = iTILE_SIZE2.sum()/2,
- framerate = 96, move_speed = tile_size_1 * 2;
+ framerate = 96 * 3, move_speed = tile_size_1 * 2 * 3;
constexpr float frame_time = 1.f/framerate;
constexpr auto arrows_to_dir(bool left, bool right, bool up, bool down)