From 36ef593c56662457b0ba970f86a1201abf7f1f26 Mon Sep 17 00:00:00 2001 From: Titus Tscharntke Date: Tue, 10 Jul 2012 00:33:45 +0000 Subject: [PATCH] \n after hint --- source/glest_game/facilities/logger.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/glest_game/facilities/logger.cpp b/source/glest_game/facilities/logger.cpp index 538388eb..352fe0d9 100644 --- a/source/glest_game/facilities/logger.cpp +++ b/source/glest_game/facilities/logger.cpp @@ -244,13 +244,13 @@ void Logger::renderLoadingScreen() { if(gameHintToShow!=""){ if(Renderer::renderText3DEnabled) { renderer.renderText3D( - "Hint: "+gameHintToShow, coreData.getMenuFontBig3D(), Vec3f(1.f), + "Hint:\n"+gameHintToShow, coreData.getMenuFontBig3D(), Vec3f(1.f), xLocation*1.5f, 90 * metrics.getVirtualH() / 100, false); } else { renderer.renderText( - "Hint: "+gameHintToShow, coreData.getMenuFontBig(), Vec3f(1.f), + "Hint:\n"+gameHintToShow, coreData.getMenuFontBig(), Vec3f(1.f), xLocation*1.5f, 90 * metrics.getVirtualH() / 100, false);