···186186 struct t_stereo_camera_calibration **out_data);
187187188188/*!
189189+ * Save the given stereo calibration data to the given file.
190190+ */
191191+bool
192192+t_stereo_camera_calibration_save_v1(FILE *calib_file,
193193+ struct t_stereo_camera_calibration *data);
194194+195195+/*!
189196 * Save raw calibration data to file, hack until prober has storage for such
190197 * things.
191198 */
192199bool
193193-t_file_save_raw_data_hack(struct t_stereo_camera_calibration *data);
200200+t_stereo_camera_calibration_save_v1_hack(
201201+ struct t_stereo_camera_calibration *data);
194202195203196204/*
+1-1
src/xrt/state_trackers/gui/gui_scene_calibrate.c
···6666 }
67676868 // Save the data.
6969- t_file_save_raw_data_hack(cs->status.stereo_data);
6969+ t_stereo_camera_calibration_save_v1_hack(cs->status.stereo_data);
70707171 // Free data, no longer needed.
7272 t_stereo_camera_calibration_reference(&cs->status.stereo_data, NULL);