diff options
author | random-geek <35757396+random-geek@users.noreply.github.com> | 2019-02-04 11:11:02 -0800 |
---|---|---|
committer | Paramat <paramat@users.noreply.github.com> | 2019-02-04 19:11:02 +0000 |
commit | fc566e2e1074e501283d4be70a654d6b79ef07ff (patch) | |
tree | 4ae5bf3e6720ea7cb3e11845ec2582070fddde2a /src/gui | |
parent | 2ae794ac4548b13e80f16455980522d8d39da07d (diff) | |
download | minetest-fc566e2e1074e501283d4be70a654d6b79ef07ff.tar.gz minetest-fc566e2e1074e501283d4be70a654d6b79ef07ff.tar.bz2 minetest-fc566e2e1074e501283d4be70a654d6b79ef07ff.zip |
Fix cloud color in loading screen and main menu (#8174)
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/guiEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/guiEngine.cpp b/src/gui/guiEngine.cpp index cb43380f3..241c85aa8 100644 --- a/src/gui/guiEngine.cpp +++ b/src/gui/guiEngine.cpp @@ -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)); |