]> git.mxchange.org Git - simgear.git/commitdiff
Added a warning message if the file is not found.
authorcurt <curt>
Mon, 11 Mar 2002 21:47:09 +0000 (21:47 +0000)
committercurt <curt>
Mon, 11 Mar 2002 21:47:09 +0000 (21:47 +0000)
simgear/constants.h
simgear/io/sg_binobj.cxx

index f0a094350f05457f55f55b5383311cca206955b7..dcb266d0f9d4237e70c393085cdc1fdff04495ce 100644 (file)
 
 /** Highest binobj format version we know how to read/write.  This starts at
  *  0 and can go up to 65535 */
-#define SG_BINOBJ_VERSION 5
+#define SG_BINOBJ_VERSION 6
 
 /** for backwards compatibility */
 #define SG_SCENERY_FILE_FORMAT "0.4"
index 01141d4528c7cfd29b524dc62a62ae9796ccf783..73403d3734362a2230bd8a99bd5155ce2d00b513 100644 (file)
@@ -320,8 +320,8 @@ bool SGBinObject::read_bin( const string& file ) {
     if ( (fp = gzopen( file.c_str(), "rb" )) == NULL ) {
        string filegz = file + ".gz";
        if ( (fp = gzopen( filegz.c_str(), "rb" )) == NULL ) {
-           // cout << "ERROR: opening " << file << " or " << filegz
-           //      << "for reading!" << endl;
+           cout << "ERROR: opening " << file << " or " << filegz
+                << "for reading!" << endl;
 
            return false;
        }