Difference for 2d/pcx.c from version 1.2 to 1.3


version 1.2 version 1.3
Line 19
 
Line 19
  * Routines to read/write pcx images.   * Routines to read/write pcx images.
  *    *
  * $Log$   * $Log$
    * Revision 1.3  1999/11/20 10:05:16  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).
    *
  * Revision 1.2  1999/08/05 22:53:40  sekmu   * Revision 1.2  1999/08/05 22:53:40  sekmu
  *   *
  * D3D patch(es) from ADB   * D3D patch(es) from ADB
Line 332
 
Line 335
  }   }
   
  return p;   return p;
   
 }  }
   
   // fullscreen loading, 10/14/99 Jan Bobrowski
   
   int pcx_read_fullscr(char * filename, ubyte * palette)
   {
    int pcx_error;
    grs_bitmap bm;
    gr_init_bitmap_data(&bm);
    pcx_error = pcx_read_bitmap(filename, &bm, BM_LINEAR, palette);
    if (pcx_error == PCX_ERROR_NONE)
    show_fullscr(&bm);
    gr_free_bitmap_data(&bm);
    return pcx_error;
   }

Legend:
line(s) removed in v.1.2 
line(s) changed
 line(s) added in v.1.3