diff options
Diffstat (limited to 'src/glut_font.cxx')
| -rw-r--r-- | src/glut_font.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/glut_font.cxx b/src/glut_font.cxx index 6053d733a..788e9dee4 100644 --- a/src/glut_font.cxx +++ b/src/glut_font.cxx @@ -114,8 +114,10 @@ void glutStrokeString(void* fontID, const unsigned char *string) { * A newline will simply translate the next character's insertion * point back to the start of the line and down one line. */ - +#if !defined(WIN32) || defined(CYGWIN) #warning FIXME This needs to be UTF aware now +#endif + while ((c = *string++) != 0) { if (c < font->Quantity) { if (c == '\n') { |
