codeclean

This commit is contained in:
András Salamon 2005-09-17 15:06:28 +00:00
parent 66cf85dafa
commit 7d8df94788

View file

@ -470,6 +470,7 @@ std::istream *istream_file(std::string const &fname)
std::ifstream *s = new std::ifstream((game_config::path + "/" + fname).c_str(),std::ios_base::binary);
if (s->is_open())
return s;
LOG_FS << "could not open " << fname << " for reading.\n";
delete s;
}
#endif