diff --git a/device/raspistill/raspistill.go b/device/raspistill/raspistill.go index b5025601..877c41b1 100644 --- a/device/raspistill/raspistill.go +++ b/device/raspistill/raspistill.go @@ -104,7 +104,7 @@ func (r *Raspistill) Name() string { return "Raspistill" } func (r *Raspistill) Set(c config.Config) error { var errs device.MultiError - if c.Rotation > 359 || c.Rotation < 0 { + if c.Rotation > 359 { c.Rotation = defaultRotation errs = append(errs, errBadRotation) }