Removed two more bogus "carriage return" references where the comments
were in fact talking about a line feed (a.k.a. newline, LF, ^J, \n, ...). git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@239 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
04c6d13777
commit
6f7dc9821f
@ -139,7 +139,7 @@ void FGAPIENTRY glutBitmapString( void* fontID, const unsigned char *string )
|
||||
|
||||
/*
|
||||
* Step through the string, drawing each character.
|
||||
* A carriage return will simply translate the next character's insertion
|
||||
* A newline will simply translate the next character's insertion
|
||||
* point back to the start of the line and down one line.
|
||||
*/
|
||||
for( c = 0; c < numchar; c++ )
|
||||
@ -246,7 +246,7 @@ void FGAPIENTRY glutStrokeString( void* fontID, const unsigned char *string )
|
||||
|
||||
/*
|
||||
* Step through the string, drawing each character.
|
||||
* A carriage return will simply translate the next character's insertion
|
||||
* A newline will simply translate the next character's insertion
|
||||
* point back to the start of the line and down one line.
|
||||
*/
|
||||
for( c = 0; c < numchar; c++ )
|
||||
|
Reference in New Issue
Block a user