Difference for include/define.h from version 1.101 to 1.102


version 1.101 version 1.102
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_define_h =   * static char *rcsid_define_h =
  *   "$Id: define.h,v 1.101 2005/11/16 08:16:00 mwedel Exp $";   *   "$Id: define.h,v 1.102 2005/11/30 07:58:47 mwedel Exp $";
  */   */
   
 /*  /*
Line 656
 
Line 656
   
 /* Basic macro to see if if ob1 can not move onto a space based  /* Basic macro to see if if ob1 can not move onto a space based
  * on the 'type' move_block parameter   * on the 'type' move_block parameter
    * Add check - if type is 0, don't stop anything from moving
    * onto it.
    *
  */   */
 #define OB_TYPE_MOVE_BLOCK(ob1, type) \  #define OB_TYPE_MOVE_BLOCK(ob1, type) \
     ((ob1->move_type & type) == ob1->move_type)      ( (type != 0) && (ob1->move_type & type) == ob1->move_type)
   
   
 #define SET_GENERATE_TYPE(xyz,va) (xyz)->stats.sp=(va)  #define SET_GENERATE_TYPE(xyz,va) (xyz)->stats.sp=(va)


Legend:
line(s) removed in v.1.101 
line(s) changed
 line(s) added in v.1.102

File made using version 1.98 of cvs2html by leaf at 2011-07-21 19:19