Difference for main/titles.c from version 1.4 to 1.5


version 1.4 version 1.5
Line 19
 
Line 19
  * Routines to display title screens...   * Routines to display title screens...
  *    *
  * $Log$   * $Log$
    * Revision 1.5  2002/03/26 08:37:40  donut
    * fix position of briefing animated door bitmap at non 320x200 resolutions
    *
  * Revision 1.4  1999/11/20 10:05:19  donut   * Revision 1.4  1999/11/20 10:05:19  donut
  * variable size menu patch from Jan Bobrowski.  Variable menu font size support and a bunch of fixes for menus that didn't work quite right, by me (MPM).   * variable size menu patch from Jan Bobrowski.  Variable menu font size support and a bunch of fixes for menus that didn't work quite right, by me (MPM).
  *   *
Line 464
 
Line 467
  }   }
   
  switch (Animating_bitmap_type) {   switch (Animating_bitmap_type) {
  case 0: bitmap_canv = gr_create_sub_canvas(grd_curcanv, 220, 45, 64, 64); break;   case 0: bitmap_canv = gr_create_sub_canvas(grd_curcanv, rescale_x(220), rescale_y(45), 64, 64); break;
  case 1: bitmap_canv = gr_create_sub_canvas(grd_curcanv, 220, 45, 94, 94); break; // Adam: Change here for your new animating bitmap thing. 94, 94 are bitmap size.   case 1: bitmap_canv = gr_create_sub_canvas(grd_curcanv, rescale_x(220), rescale_y(45), 94, 94); break; // Adam: Change here for your new animating bitmap thing. 94, 94 are bitmap size.
  default: Int3(); // Impossible, illegal value for Animating_bitmap_type   default: Int3(); // Impossible, illegal value for Animating_bitmap_type
  }   }
   

Legend:
line(s) removed in v.1.4 
line(s) changed
 line(s) added in v.1.5