CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Philippe Plantier <[EMAIL PROTECTED]> 04/10/28 19:53:32
Modified files:
src : preferences.cpp
Log message:
"Commented the code forcing the resolution width & height to be
divisible by 4."
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/preferences.cpp.diff?tr1=1.115&tr2=1.116&r1=text&r2=text
Patches:
Index: wesnoth/src/preferences.cpp
diff -u wesnoth/src/preferences.cpp:1.115 wesnoth/src/preferences.cpp:1.116
--- wesnoth/src/preferences.cpp:1.115 Thu Oct 28 19:44:14 2004
+++ wesnoth/src/preferences.cpp Thu Oct 28 19:53:31 2004
@@ -1,4 +1,4 @@
-/* $Id: preferences.cpp,v 1.115 2004/10/28 19:44:14 gruikya Exp $ */
+/* $Id: preferences.cpp,v 1.116 2004/10/28 19:53:31 gruikya Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -162,8 +162,8 @@
maximum(atoi(y->second.c_str()),600));
//make sure resolutions are always divisible by 4
- res.first &= ~3;
- res.second &= ~3;
+ //res.first &= ~3;
+ //res.second &= ~3;
return res;
} else {
return std::pair<int,int>(1024,768);