aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/display.cpp
diff options
context:
space:
mode:
authorArnaud Boutonné2010-10-25 13:31:01 +0000
committerArnaud Boutonné2010-10-25 13:31:01 +0000
commit35f220ace2ae1839f8a0706fc0e3de1ad39a6045 (patch)
treee070ebf4e9e901c19e86b93711937dec63b3f322 /engines/hugo/display.cpp
parent4e9a2798ef9aef3b28e595adeaa0873fd1ce6171 (diff)
downloadscummvm-rg350-35f220ace2ae1839f8a0706fc0e3de1ad39a6045.tar.gz
scummvm-rg350-35f220ace2ae1839f8a0706fc0e3de1ad39a6045.tar.bz2
scummvm-rg350-35f220ace2ae1839f8a0706fc0e3de1ad39a6045.zip
HUGO: cleanup: Suppress trailing spaces and tabs
svn-id: r53825
Diffstat (limited to 'engines/hugo/display.cpp')
-rw-r--r--engines/hugo/display.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/hugo/display.cpp b/engines/hugo/display.cpp
index 5a5069b06c..2380ab9f30 100644
--- a/engines/hugo/display.cpp
+++ b/engines/hugo/display.cpp
@@ -213,7 +213,7 @@ int16 Screen::mergeLists(rect_t *list, rect_t *blist, int16 len, int16 blen, int
if (OVERLAP(list, bp))
coalesce[c++] = b;
}
-
+
// Any overlapping blit rects?
if (c == 0) { // None, add a new entry
blist[blen++] = *list;
@@ -377,7 +377,7 @@ void Screen::shadowStr(int16 sx, int16 sy, const char *s, byte color) {
void Screen::userHelp() {
// Introduce user to the game
// DOS versions Only
- Utils::Box(BOX_ANY , "%s",
+ Utils::Box(BOX_ANY , "%s",
"F1 - Press F1 again\n"
" for instructions\n"
"F2 - Sound on/off\n"
@@ -421,7 +421,7 @@ void Screen::drawShape(int x, int y, int color1, int color2) {
_backBuffer[320 * (y + (2 * shapeSize - 1) - i) + (x + shapeSize + j)] = color2;
_frontBuffer[320 * (y + (2 * shapeSize - 1) - i) + (x + shapeSize + j)] = color2;
}
- }
+ }
}
void Screen::drawRectangle(bool filledFl, uint16 x1, uint16 y1, uint16 x2, uint16 y2, int color) {