Fixed zeroed bit in superstructure status.

Change-Id: I0b6e9ff37ac9418aac1d34bb22476314cc9f775b
diff --git a/y2016/control_loops/superstructure/superstructure.cc b/y2016/control_loops/superstructure/superstructure.cc
index ccd2388..ba49675 100644
--- a/y2016/control_loops/superstructure/superstructure.cc
+++ b/y2016/control_loops/superstructure/superstructure.cc
@@ -596,8 +596,7 @@
   }
 
   // Save debug/internal state.
-  // TODO(austin): Save the voltage errors.
-  status->zeroed = IsRunning();
+  status->zeroed = arm_.zeroed() && intake_.zeroed();
 
   status->shoulder.angle = arm_.X_hat(0, 0);
   status->shoulder.angular_velocity = arm_.X_hat(1, 0);