diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/spatial.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/spatial.c b/src/spatial.c index 502c0f4..e730ee0 100644 --- a/src/spatial.c +++ b/src/spatial.c @@ -277,17 +277,17 @@ ssize_t scene_fill(xas_spatial_scene *scene, if (!within_cone_l) { if (within_cone_r) { - value_l /= 8.0f; + value_l /= 8; } else { - value_l /= 3.0f; + value_l /= 3; } } if (!within_cone_r) { if (within_cone_l) { - value_r /= 8.0f; + value_r /= 8; } else { - value_r /= 3.0f; + value_r /= 3; } } |