"Commented the code forcing the resolution width & height to be divisible by 4."
This commit is contained in:
parent
2173cf6e0f
commit
3d1cc6aea4
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue