diff options
-rw-r--r-- | src/ball.c | 4 | ||||
-rw-r--r-- | src/map.c | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -84,8 +84,8 @@ void db_balls_move(struct db_ball *ball) { if (ball->sr == 0) { - ball->x += cos(ball->a * (M_PI / 180)); - ball->y += sin(ball->a * (M_PI / 180)); + ball->x += cos(ball->a * (M_PI / 180)) * ball->s; + ball->y += sin(ball->a * (M_PI / 180)) * ball->s; } else { ball->a = fmod(ball->a + ball->d * ball->s, 360); ball->x = ball->cx + cos(ball->a * (M_PI / 180)) * ball->sr; @@ -450,6 +450,9 @@ _db_tmx_object_property_start(void *pv, const char *name, const char **attr) free(p_type); db_dbg(" Object speed: %f px/s", map->obj_s); + map->obj_s /= map->fr; + db_dbg(" Object speed: %f px/f", + map->obj_s); } else if (strcmp(p_name, "direction") == 0) { db_xml_get_string_attr(p, attr, "value", &dir, 1); if (strcmp(dir, "lr") == 0) { |