Fixing ambiguous parentheses (possibly incorrect?) and a grammatical error in a comment in "freeglut_gamemode.c" per e-mail from John Tsiombikas dated 12/19/11 at 7:14 AM
git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@961 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
4dbbd19e46
commit
4007f4ba93
@ -59,10 +59,10 @@ static int xrandr_resize(int xsz, int ysz, int rate, int just_checking)
|
|||||||
* the user actually cares about it (rate > 0)
|
* the user actually cares about it (rate > 0)
|
||||||
*/
|
*/
|
||||||
use_rate = ( rate > 0 ) && ( ( ver_major >= 1 ) ||
|
use_rate = ( rate > 0 ) && ( ( ver_major >= 1 ) ||
|
||||||
( ver_major == 1 ) && ( ver_minor >= 1 ) );
|
( ( ver_major == 1 ) && ( ver_minor >= 1 ) ) );
|
||||||
|
|
||||||
/* this loop is only so that the whole thing will be repeated if someone
|
/* this loop is only so that the whole thing will be repeated if someone
|
||||||
* else changes video mode between our query the current information and
|
* else changes video mode between our query of the current information and
|
||||||
* the attempt to change it.
|
* the attempt to change it.
|
||||||
*/
|
*/
|
||||||
do {
|
do {
|
||||||
|
Reference in New Issue
Block a user