Index: trunk/src/obj_hash.h =================================================================== --- trunk/src/obj_hash.h (revision 22248) +++ trunk/src/obj_hash.h (revision 22249) @@ -74,7 +74,7 @@ PCB_INLINE unsigned pcb_hash_angle(const pcb_host_trans_t *tr, pcb_angle_t ang) { long l; - ang -= tr->rot; + ang += tr->rot; ang *= 10000; l = floor(ang); return murmurhash(&l, sizeof(l));