diff options
author | Colin Noga <Tempus@chronometry.ca> | 2012-02-29 15:11:25 -0600 |
---|---|---|
committer | Colin Noga <Tempus@chronometry.ca> | 2012-02-29 15:11:25 -0600 |
commit | 10c0df080e801ec4abb2c2272a90d04d00fee4e7 (patch) | |
tree | eae95677128ab1c603336f096ebff561b4cf3680 /src/meteor.cpp | |
parent | 3f22b00986d9fe2ebc0b596235b9093a96720614 (diff) | |
download | kamek-10c0df080e801ec4abb2c2272a90d04d00fee4e7.tar.gz kamek-10c0df080e801ec4abb2c2272a90d04d00fee4e7.zip |
FUCK YOU LINKER
Diffstat (limited to '')
-rwxr-xr-x | src/meteor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/meteor.cpp b/src/meteor.cpp index 85b1358..c7d9220 100755 --- a/src/meteor.cpp +++ b/src/meteor.cpp @@ -55,15 +55,15 @@ int dMeteor::onCreate() { // Other settings this->spinDir = this->settings & 0x1; - this->spinSpeed = ((this->settings >> 16) & 0xFF) * 4; + this->spinSpeed = ((this->settings >> 16) & 0xFF) * 80; // Setup Physics - MakeItRound.baseSetup(this, &spinningPhysicsCallback, 0, 0, 1, 1); + MakeItRound.baseSetup(this, &spinningPhysicsCallback, 0, 0, 1, 0); MakeItRound.x = 0.0; MakeItRound.y = 0.0; - MakeItRound.diameter = 160.0 * sca; + MakeItRound.diameter = 16.0 * sca; MakeItRound.isRound = 1; MakeItRound.update(); |