From 84ba0df9b2ce15d6c1d32a6c61794a1accb3fc99 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Thu, 4 Dec 2014 14:17:30 +0100 Subject: ACCESS: Janitorial --- engines/access/font.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/access/font.cpp') diff --git a/engines/access/font.cpp b/engines/access/font.cpp index 5686cdf3b0..51fb9dc1c8 100644 --- a/engines/access/font.cpp +++ b/engines/access/font.cpp @@ -50,7 +50,7 @@ void Font::load(const int *fontIndex, const byte *fontData) { int bitsLeft = 0; byte srcByte = 0; byte pixel; - + byte *pDest = (byte *)_chars[i].getBasePtr(0, y); for (int x = 0; x < _chars[i].w; ++x, ++pDest) { // Get the pixel @@ -115,8 +115,8 @@ bool Font::getLine(Common::String &s, int maxWidth, Common::String &line, int &w s = ""; return true; } - - // Work backwards to find space at the start of the current word + + // Work backwards to find space at the start of the current word // as a point to split the line on while (src >= s.c_str() && *src != ' ') { width -= charWidth(*src); -- cgit v1.2.3