diff options
Diffstat (limited to 'src/camera.cc')
-rw-r--r-- | src/camera.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/camera.cc b/src/camera.cc index e7994f6..a35cf9c 100644 --- a/src/camera.cc +++ b/src/camera.cc @@ -27,6 +27,10 @@ */ /* * $Log$ + * Revision 1.11 2005/05/02 09:58:43 deva + * + * Fixed initial values of the stae bools. + * * Revision 1.10 2005/05/02 09:50:22 deva * Rewrote freeze, shoot and record flags, from encoder to frame. * @@ -153,8 +157,8 @@ void Camera::setCpr(char *newcpr) void Camera::start() { if(initialized) { - decoder->start(); encoder->start(); + decoder->start(); } else { errorstatus->pushError("Camera not initialized."); } |