diff --git a/source/director.cpp b/source/director.cpp index d633e64..5f3a7e0 100644 --- a/source/director.cpp +++ b/source/director.cpp @@ -52,7 +52,7 @@ Director::Director(int argc, const char *argv[]) section::name = section::Name::GAME; section::options = section::Options::GAME_PLAY_1P; #elif DEBUG - section::name = section::Name::LOGO; + section::name = section::Name::HI_SCORE_TABLE; #else // NORMAL GAME section::name = section::Name::LOGO; section::attract_mode = section::AttractMode::TITLE_TO_DEMO; diff --git a/source/hiscore_table.cpp b/source/hiscore_table.cpp index 7cb70ff..b0f700b 100644 --- a/source/hiscore_table.cpp +++ b/source/hiscore_table.cpp @@ -43,6 +43,8 @@ HiScoreTable::HiScoreTable() background_->setCloudsSpeed(-0.1f); background_->setGradientNumber(1); background_->setTransition(0.8f); + background_->setSunProgression(1.0f); + background_->setMoonProgression(0.6f); fade_->setColor(fade_color.r, fade_color.g, fade_color.b); fade_->setType(FadeType::RANDOM_SQUARE); fade_->setPostDuration(param.fade.post_duration);