aboutsummaryrefslogtreecommitdiff
path: root/engines/queen/display.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/queen/display.cpp')
-rw-r--r--engines/queen/display.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/queen/display.cpp b/engines/queen/display.cpp
index dc5c82aa4d..7c9573612a 100644
--- a/engines/queen/display.cpp
+++ b/engines/queen/display.cpp
@@ -836,7 +836,7 @@ void Display::setTextCentered(uint16 y, const char *text, bool outlined) {
void Display::drawTexts() {
for (int y = GAME_SCREEN_HEIGHT - 1; y > 0; --y) {
const TextSlot *pts = &_texts[y];
- if (!pts->text.isEmpty()) {
+ if (!pts->text.empty()) {
drawText(pts->x, y, pts->color, pts->text.c_str(), pts->outlined);
}
}