summaryrefslogtreecommitdiff
path: root/src/gui/font.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/font.cpp')
-rw-r--r--src/gui/font.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/font.cpp b/src/gui/font.cpp
index e1d793ce1..8c022f99d 100644
--- a/src/gui/font.cpp
+++ b/src/gui/font.cpp
@@ -522,7 +522,7 @@ void Font::drawString(Graphics *const graphics,
if (image)
{
image->setAlpha(alpha);
- g->drawImage2(image, x, y);
+ g->drawImage(image, x, y);
}
}
else
@@ -544,7 +544,7 @@ void Font::drawString(Graphics *const graphics,
const Image *const image = chunk2->img;
if (image)
- g->drawImage2(image, x, y);
+ g->drawImage(image, x, y);
}
BLOCK_END("Font::drawString")
}