tr2/config: update default fog distances

This commit is contained in:
Marcin Kurczewski 2025-04-11 00:41:47 +02:00
parent 98acd91c5a
commit 26f290e2b7
2 changed files with 3 additions and 2 deletions

View file

@ -7,6 +7,7 @@
- added the ability for custom levels to have up to two of each secret type per level (#2674)
- added BSON savegame support, removing the limits imposed by the OG 8KB file size, so allowing for storing more data and offering improved feature support (legacy save files can still be read, similar to TR1) (#2662)
- changed savegame files to be stored in the `saves` directory (#2087)
- changed the default fog distance to 22 tiles cutting off at 30 tiles to match TR1X (#1622)
- fixed the inability to completely mute the sounds, even at sound volume 0 (#2722)
- fixed the final two levels not allowing for secrets to be counted in the statistics (#1582)
- fixed Lara's holsters being empty if a game flow level removes all weapons but also re-adds the pistols (#2677)

View file

@ -22,8 +22,8 @@ CFG_BOOL(g_Config, visuals.enable_exit_fade_effects, true)
CFG_BOOL(g_Config, visuals.fix_item_rots, true)
CFG_INT32(g_Config, visuals.fov, 80)
CFG_BOOL(g_Config, visuals.use_pcx_fov, true)
CFG_INT32(g_Config, visuals.fog_start, 12)
CFG_INT32(g_Config, visuals.fog_end, 20)
CFG_INT32(g_Config, visuals.fog_start, 22)
CFG_INT32(g_Config, visuals.fog_end, 30)
CFG_DOUBLE(g_Config, ui.text_scale, 1.0)
CFG_DOUBLE(g_Config, ui.bar_scale, 1.0)
CFG_BOOL(g_Config, ui.enable_photo_mode_ui, true)