Difference for main/loadrl2.c from version 1.2 to 1.3


version 1.2 version 1.3
Line 197
 
Line 197
  return f;   return f;
 }  }
   
 /*static*/ byte read_byte(CFILE *file)  /*static*/ sbyte read_byte(CFILE *file)
 {  {
  byte b;   sbyte b;
   
  if (cfread( &b, sizeof(b), 1, file) != 1)   if (cfread( &b, sizeof(b), 1, file) != 1)
  Error( "Error reading byte in gamesave.c" );   Error( "Error reading byte in gamesave.c" );
Line 210
 
Line 210
 #if 0  #if 0
 static ubyte read_ubyte(CFILE *file)  static ubyte read_ubyte(CFILE *file)
 {  {
  byte b;   ubyte b;
   
  if (cfread( &b, sizeof(b), 1, file) != 1)   if (cfread( &b, sizeof(b), 1, file) != 1)
  Error( "Error reading byte in gamesave.c" );   Error( "Error reading byte in gamesave.c" );

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