Replaced Gnome.AppBar with a dialog (stored in .glade file)
[supertux.git] / src / physfs / physfs_stream.cpp
index beb5848..28d92c5 100644 (file)
@@ -17,7 +17,6 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#if 0
 #include <config.h>
 
 #include "physfs_stream.hpp"
 
 IFileStreambuf::IFileStreambuf(const std::string& filename)
 {
-       // check this as PHYSFS seems to be buggy and still returns a
-       // valid pointer in this case
-       if(filename == "") {
-               throw std::runtime_error("Couldn't open file: empty filename");
-       }
+    // check this as PHYSFS seems to be buggy and still returns a
+    // valid pointer in this case
+    if(filename == "") {
+        throw std::runtime_error("Couldn't open file: empty filename");
+    }
     file = PHYSFS_openRead(filename.c_str());
     if(file == 0) {
         std::stringstream msg;
@@ -178,4 +177,3 @@ OFileStream::~OFileStream()
 {
     delete rdbuf();
 }
-#endif