# HG changeset patch # User nkeynes # Date 1192944035 0 # Node ID f6586b97813ac2af6b0b7b619f81a55e682e29dc # Parent 20f9c11e69e56f87b4676d12f1e13c3e30e6914a Remove error on unable to open file --- a/src/loader.c Sun Oct 21 05:20:15 2007 +0000 +++ b/src/loader.c Sun Oct 21 05:20:35 2007 +0000 @@ -1,5 +1,5 @@ /** - * $Id: loader.c,v 1.19 2007-10-17 11:26:45 nkeynes Exp $ + * $Id: loader.c,v 1.20 2007-10-21 05:20:35 nkeynes Exp $ * * File loading routines, mostly for loading demos without going through the * whole procedure of making a CD image for them. @@ -57,8 +57,6 @@ int fd = open( filename, O_RDONLY ); if( fd == -1 ) { - ERROR( "Unable to open file: '%s' (%s)", filename, - strerror(errno) ); return FALSE; }