diff options
Diffstat (limited to 'source/frontend')
-rw-r--r-- | source/frontend/StarChatBubbleSeparation.cpp | 2 | ||||
-rw-r--r-- | source/frontend/StarMainInterface.cpp | 3 | ||||
-rw-r--r-- | source/frontend/StarTitleScreen.cpp | 4 |
3 files changed, 6 insertions, 3 deletions
diff --git a/source/frontend/StarChatBubbleSeparation.cpp b/source/frontend/StarChatBubbleSeparation.cpp index ba22ed5..65c9eb1 100644 --- a/source/frontend/StarChatBubbleSeparation.cpp +++ b/source/frontend/StarChatBubbleSeparation.cpp @@ -1,5 +1,5 @@ #include "StarChatBubbleSeparation.hpp" -#include "StarLogging.hpp" +//#include "StarLogging.hpp" namespace Star { diff --git a/source/frontend/StarMainInterface.cpp b/source/frontend/StarMainInterface.cpp index 9d3c3a5..eb13a35 100644 --- a/source/frontend/StarMainInterface.cpp +++ b/source/frontend/StarMainInterface.cpp @@ -814,11 +814,10 @@ void MainInterface::render() { renderMonsterHealthBar(); renderSpecialDamageBar(); renderMainBar(); + renderDebug(); renderWindows(); renderCursor(); - - renderDebug(); } Vec2F MainInterface::cursorWorldPosition() const { diff --git a/source/frontend/StarTitleScreen.cpp b/source/frontend/StarTitleScreen.cpp index e2963f0..df0dcc4 100644 --- a/source/frontend/StarTitleScreen.cpp +++ b/source/frontend/StarTitleScreen.cpp @@ -30,6 +30,10 @@ TitleScreen::TitleScreen(PlayerStoragePtr playerStorage, MixerPtr mixer) auto randomWorld = m_celestialDatabase->findRandomWorld(10, 50, [this](CelestialCoordinate const& coordinate) { return is<TerrestrialWorldParameters>(m_celestialDatabase->parameters(coordinate)->visitableParameters()); }).take(); + + if (auto name = m_celestialDatabase->name(randomWorld)) + Logger::info("Title world is {} @ CelestialWorld:{}", Text::stripEscapeCodes(*name), randomWorld); + SkyParameters skyParameters(randomWorld, m_celestialDatabase); m_skyBackdrop = make_shared<Sky>(skyParameters, true); |