From 098d4f900ebdd63732d17bca82b86da17fc6a73a Mon Sep 17 00:00:00 2001 From: Rtch90 Date: Thu, 19 Apr 2012 14:53:25 +0100 Subject: [PATCH] [Add] Just a little fun adding a title to our player. --- src/Main/Game.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Main/Game.cpp b/src/Main/Game.cpp index c967953..03bcc35 100644 --- a/src/Main/Game.cpp +++ b/src/Main/Game.cpp @@ -158,8 +158,12 @@ void Game::RenderGame(void) { _NPC->Render(); _testFont->RenderText( _player->GetX() - 5, - _player->GetY() - _testFont->GetLineSkip() - 2, + _player->GetY() - _testFont->GetLineSkip() - 20, "Miss D"); + _testFont->RenderText( + _player->GetX() - 50, + _player->GetY() - _testFont->GetLineSkip() - 2, + ""); } void Game::NewGame(void) {