mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-13 07:58:04 +00:00
- Exhumed: Changed visibility from 2048 to 1024 because 2048 is clearly far too dark.
GDX also uses 1024 - I have no idea how PCExhumed gets away with 2048 here.
This commit is contained in:
parent
8d659bad32
commit
88bed95400
3 changed files with 3 additions and 3 deletions
|
@ -112,7 +112,7 @@ static bool LiteCheat(cheatseq_t* c)
|
|||
{
|
||||
Printf(PRINT_NOTIFY, "%s\n", GStrings("TXT_EX_FLASHES"));
|
||||
bDoFlashes = !bDoFlashes;
|
||||
g_visibility = 2048 + 512 - g_visibility; // let there be light - for real!
|
||||
g_visibility = 1024 + 512 - g_visibility; // let there be light - for real!
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -164,7 +164,7 @@ uint8_t LoadLevel(int nMap)
|
|||
pSky->horizfrac = 65536;
|
||||
pSky->yscale = 65536;
|
||||
parallaxtype = 2;
|
||||
g_visibility = 2048;
|
||||
g_visibility = 1024;
|
||||
flash = 0;
|
||||
precache();
|
||||
|
||||
|
|
|
@ -112,7 +112,7 @@ void GameInterface::SerializeGameState(FSerializer& arc)
|
|||
pSky->horizfrac = 65536;
|
||||
pSky->yscale = 65536;
|
||||
parallaxtype = 2;
|
||||
g_visibility = 2048;
|
||||
g_visibility = 1024;
|
||||
|
||||
if (currentLevel->levelNumber > 15)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue