summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/Font.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'nGenEx/Font.cpp')
-rw-r--r--nGenEx/Font.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/nGenEx/Font.cpp b/nGenEx/Font.cpp
index 04127c6..02dca6a 100644
--- a/nGenEx/Font.cpp
+++ b/nGenEx/Font.cpp
@@ -416,7 +416,7 @@ Font::FindEdges(BYTE c, double* l, double* r)
static bool nokern(char c)
{
- if (c <= Font::ARROW_RIGHT || c >= 128)
+ if (c <= Font::ARROW_RIGHT)
return true;
const char* nokernchars = "0123456789+=<>-.,:;?'\"";
@@ -917,14 +917,13 @@ Font::DrawTextMulti(const char* text, int count, const Rect& text_rect, Rect& cl
else if (flags & DT_CENTER)
align = DT_CENTER;
- int nlines = 1;
int max_width = 0;
int line_start = 0;
int count_remaining = count;
int xoffset = 0;
int yoffset = 0;
- nlines = 0;
+ int nlines = 0;
// repeat for each line of text:
while (count_remaining > 0) {