From 305e7fbff778776109c1f15ef2e19642bb7b1625 Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Sat, 18 Oct 2008 10:44:36 +0000 Subject: reenabled the crc checking of maps on the client --- src/engine/client/ec_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/engine') diff --git a/src/engine/client/ec_client.c b/src/engine/client/ec_client.c index e6d26e37..82d7a174 100644 --- a/src/engine/client/ec_client.c +++ b/src/engine/client/ec_client.c @@ -709,7 +709,7 @@ static const char *client_load_map(const char *name, const char *filename, int w /* get the crc of the map */ crc = datafile_crc(filename); - if(0 && crc != wanted_crc) /* TODO: FIX ME!!! */ + if(crc != wanted_crc) { datafile_unload(df); str_format(errormsg, sizeof(errormsg), "map differs from the server. %08x != %08x", crc, wanted_crc); -- cgit 1.4.1