don't adjust aspect-ratio in non-fullscreen modes, removed a few unneeded headers
[supertux.git] / src / physfs / physfs_stream.cpp
index 1bc8d50..e1d1557 100644 (file)
@@ -31,7 +31,7 @@ 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: emtpy filename");
+               throw std::runtime_error("Couldn't open file: empty filename");
        }
     file = PHYSFS_openRead(filename.c_str());
     if(file == 0) {