revert my 2007-12-06T02:11:40Z!alinkmaze@gmail.com

the last configure.ac always set this flag for the game, mine was just
obsolete and I was confused by the different needs of wesnoth apps.
This commit is contained in:
Ali El Gariani 2007-12-06 11:06:42 +00:00
parent 41f04a013f
commit b1597b31fd

View file

@ -736,12 +736,9 @@ void read_save_file(const std::string& name, config& cfg, std::string* error_log
cfg.clear();
try{
#ifdef USE_GZIP
if(is_gzip_file(name)) {
read_gz(cfg, *file_stream, error_log);
} else
#endif
{
} else {
detect_format_and_read(cfg, *file_stream, error_log);
}
} catch (config::error &err)