CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Guillaume Melquiond <[EMAIL PROTECTED]> 05/03/05 11:14:17
Modified files:
src : game.cpp
Log message:
A cache-disabling typo.
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/game.cpp.diff?tr1=1.203&tr2=1.204&r1=text&r2=text
Patches:
Index: wesnoth/src/game.cpp
diff -u wesnoth/src/game.cpp:1.203 wesnoth/src/game.cpp:1.204
--- wesnoth/src/game.cpp:1.203 Sat Mar 5 10:54:25 2005
+++ wesnoth/src/game.cpp Sat Mar 5 11:14:17 2005
@@ -1,4 +1,4 @@
-/* $Id: game.cpp,v 1.203 2005/03/05 10:54:25 silene Exp $ */
+/* $Id: game.cpp,v 1.204 2005/03/05 11:14:17 silene Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -256,8 +256,8 @@
if(use_cache) {
try {
if(file_exists(fname_checksum))
{
- config const
checksum_cfg;
- read(cfg,
read_file(fname_checksum));
+ config checksum_cfg;
+ read(checksum_cfg,
read_file(fname_checksum));
dir_checksum =
file_tree_checksum(checksum_cfg);
}
} catch(config::error&) {