ibodrov / libfov

Automatically exported from code.google.com/p/libfov
MIT License
0 stars 2 forks source link

Return statement missing ? #1

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
if (angle <= 0.0f) {
  return;
} else if (angle >= 360.0f) {
  _fov_circle(&data);
}

i think it should be this:

if (angle <= 0.0f) {
  return;
} else if (angle >= 360.0f) {
  _fov_circle(&data);
  return;
}

Original issue reported on code.google.com by blue.p...@gmail.com on 9 Jun 2008 at 12:30

GoogleCodeExporter commented 8 years ago

Original comment by blue.p...@gmail.com on 9 Jun 2008 at 6:24

GoogleCodeExporter commented 8 years ago

Original comment by blue.p...@gmail.com on 9 Jun 2008 at 6:26

GoogleCodeExporter commented 8 years ago
Fixed in r31

Original comment by blue.p...@gmail.com on 19 Jun 2008 at 10:24