mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-03 17:19:39 +00:00
Use middle gray instead of pure black as default fallback color (Fixes #2841)
This commit is contained in:
parent
9b8c56761b
commit
e4531a6910
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ namespace Fallback
|
||||||
{
|
{
|
||||||
std::string sum=getFallbackString(fall);
|
std::string sum=getFallbackString(fall);
|
||||||
if(sum.empty())
|
if(sum.empty())
|
||||||
return osg::Vec4f(0.f,0.f,0.f,1.f);
|
return osg::Vec4f(0.5f,0.5f,0.5f,1.f);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
std::string ret[3];
|
std::string ret[3];
|
||||||
|
|
Loading…
Reference in a new issue