Skip to content

Commit

Permalink
Fix cloud color in loading screen and main menu (#8174)
Browse files Browse the repository at this point in the history
  • Loading branch information
random-geek authored and paramat committed Feb 4, 2019
1 parent 2ae794a commit fc566e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/clientlauncher.cpp
Expand Up @@ -169,7 +169,7 @@ bool ClientLauncher::run(GameParams &game_params, const Settings &cmd_args)
if (!g_menuclouds)
g_menuclouds = new Clouds(g_menucloudsmgr, -1, rand());
g_menuclouds->setHeight(100.0f);
g_menuclouds->update(v3f(0, 0, 0), video::SColor(255, 200, 200, 255));
g_menuclouds->update(v3f(0, 0, 0), video::SColor(255, 240, 240, 255));
scene::ICameraSceneNode* camera;
camera = g_menucloudsmgr->addCameraSceneNode(NULL, v3f(0, 0, 0), v3f(0, 60, 100));
camera->setFarValue(10000);
Expand Down
2 changes: 1 addition & 1 deletion src/gui/guiEngine.cpp
Expand Up @@ -323,7 +323,7 @@ void GUIEngine::cloudInit()
{
m_cloud.clouds = new Clouds(m_smgr, -1, rand());
m_cloud.clouds->setHeight(100.0f);
m_cloud.clouds->update(v3f(0, 0, 0), video::SColor(255,255,255,255));
m_cloud.clouds->update(v3f(0, 0, 0), video::SColor(255,240,240,255));

m_cloud.camera = m_smgr->addCameraSceneNode(0,
v3f(0,0,0), v3f(0, 60, 100));
Expand Down

0 comments on commit fc566e2

Please sign in to comment.