summaryrefslogtreecommitdiff
path: root/bulletpattern.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bulletpattern.cpp')
-rw-r--r--bulletpattern.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/bulletpattern.cpp b/bulletpattern.cpp
index 5e3d93d..b4b5a31 100644
--- a/bulletpattern.cpp
+++ b/bulletpattern.cpp
@@ -16,8 +16,8 @@ BulletPattern::BulletPattern() {
for(float i = 0; i < M_PI * 16; i += 0.1) {
bullets[k++] = 0.5 + cosf(i) * 0.05;
bullets[k++] = 0.5 + sinf(i) * 0.05;
- bullets[k++] = cosf(i);
- bullets[k++] = sinf(i);
+ bullets[k++] = cosf(i) / 10000.0;
+ bullets[k++] = sinf(i) / 10000.0;
}
}