There was a null pointer exception related to going into/leaving third person camera and the arrow annotation.

main
fjc40 8 years ago
parent f308f5b8f3
commit 536428ce16

@ -441,7 +441,10 @@ public class RaceViewController extends Controller {
private void removeThirdPersonAnnotations() {
viewSubjects.remove(nextMarkArrow);
arrowToNextMark.stop();
if (arrowToNextMark != null) {
arrowToNextMark.stop();
}
}
/**

Loading…
Cancel
Save