"Commented the code forcing the resolution width & height to be divisible by 4."

This commit is contained in:
Philippe Plantier 2004-10-28 19:53:31 +00:00
parent 2173cf6e0f
commit 3d1cc6aea4

View file

@ -162,8 +162,8 @@ std::pair<int,int> resolution()
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);