diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/engine.cpp | 1 | ||||
-rw-r--r-- | src/gui/minimap.cpp | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/engine.cpp b/src/engine.cpp index ba28fcc9..c5cf5c1a 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -243,6 +243,7 @@ void Engine::draw(Graphics *graphics) if ((target = player_node->getTarget())) { graphics->setFont(speechFont); + graphics->setColor(gcn::Color(255, 255, 255)); int dy = (target->getType() == Being::PLAYER) ? 90 : 52; graphics->drawText("[TARGET]", target->getPixelX() - map_x + 15, diff --git a/src/gui/minimap.cpp b/src/gui/minimap.cpp index 9d414b8b..db6d4f15 100644 --- a/src/gui/minimap.cpp +++ b/src/gui/minimap.cpp @@ -106,6 +106,7 @@ void Minimap::draw(gcn::Graphics *graphics) graphics->fillRectangle(gcn::Rectangle( being->mX / 2 + getPadding() - offset, - being->mY / 2 + getTitleBarHeight() - offset, 1, 1)); + being->mY / 2 + getTitleBarHeight() - offset, + dotSize, dotSize)); } } |