--- deliantra/server/include/global.h 2007/02/15 15:00:01 1.42 +++ deliantra/server/include/global.h 2007/02/15 15:43:36 1.43 @@ -158,13 +158,6 @@ EXTERN std::vector animations; EXTERN int num_animations,animations_allocated, bmaps_checksum; -/* Rotate right. This is used in various places for checksumming */ -static inline uint32_t -ROTATE_RIGHT (uint32_t c) -{ - return (c >> 31) | (c << 1); -} - #define SET_ANIMATION(ob,newanim) ob->face = new_faces + animations [ob->animation_id].faces [newanim] #define GET_ANIMATION(ob,anim) animations [ob->animation_id].faces [anim] #define GET_ANIM_ID(ob) (ob->animation_id)