aboutsummaryrefslogtreecommitdiff
path: root/Artist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Artist.cpp')
-rw-r--r--Artist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Artist.cpp b/Artist.cpp
index ee075c9..c73e695 100644
--- a/Artist.cpp
+++ b/Artist.cpp
@@ -5,8 +5,8 @@
Artist::Artist(Museum & museum, ArtistData data) : museum(museum) {
this->data = data;
- this->data.vx /= 50;
- this->data.vy /= 50;
+ this->data.vx /= 5;
+ this->data.vy /= 5;
}
void Artist::update() {