Index: eps.c =================================================================== --- eps.c (revision 34525) +++ eps.c (revision 34526) @@ -635,11 +635,6 @@ rnd_fprintf(f, "%mi %mi %mi %mi r\n", x1, y1, x2, y2); } -static void eps_calibrate(rnd_hid_t *hid, double xval, double yval) -{ - CRASH("eps_calibrate"); -} - static void eps_set_crosshair(rnd_hid_t *hid, rnd_coord_t x, rnd_coord_t y, int action) { } @@ -686,7 +681,6 @@ eps_hid.fill_polygon = eps_fill_polygon; eps_hid.fill_polygon_offs = eps_fill_polygon_offs; eps_hid.fill_rect = eps_fill_rect; - eps_hid.calibrate = eps_calibrate; eps_hid.set_crosshair = eps_set_crosshair; eps_hid.argument_array = eps_values; Index: ps.h =================================================================== --- ps.h (revision 34525) +++ ps.h (revision 34526) @@ -2,7 +2,6 @@ extern rnd_hid_t ps_hid; extern void ps_hid_export_to_file(FILE *, rnd_hid_attr_val_t *, rnd_xform_t *); extern void ps_start_file(FILE *); -extern void ps_calibrate_1(rnd_hid_t *hid, double, double, int); extern void hid_eps_init(); extern void hid_eps_uninit(); void ps_ps_init(rnd_hid_t * hid);