From ce28c9c99179d033b945d520474b5a6c341a55bb Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sun, 26 May 2013 00:53:48 +0000 Subject: [PATCH] - Added parentheses for clarity. SVN r4286 (trunk) --- src/v_font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v_font.cpp b/src/v_font.cpp index c7a815c7e8..0d88a47dff 100644 --- a/src/v_font.cpp +++ b/src/v_font.cpp @@ -295,7 +295,7 @@ static int stripaccent(int code) return 'D' + (code & 0x20); if (acode == 0xD1) // N with tilde return 'N' + (code & 0x20); - if (acode >= 0xD2 && acode <= 0xD6 || // O with accents + if ((acode >= 0xD2 && acode <= 0xD6) || // O with accents acode == 0xD8) // O with stroke return 'O' + (code & 0x20); if (acode >= 0xD9 && acode <= 0xDC) // U with accents