/** 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"
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;
}