Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Nov 13, 2023
1 parent 78bd3bf commit ea53a03
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* Monsters now only become non-solid at the end of their death sequence rather than at the start.
* When the `r_shadows` CVAR is `on`, if a monster becomes fullbright when attacking, the shadow they cast now momentarily becomes slightly lighter.
* The player’s crosshair now displays correctly when the `crosshair` CVAR is `cross` and the `r_hud_translucency` CVAR is `off`.
* Minor improvements have been made to the parsing of `MAPINFO` lumps.
* Specifying `-dog`, or `-dogs 1` to `-dogs 8`, on the command-line now spawns one or more [*MBF*-compatible helper dogs](https://doomwiki.org/wiki/Helper_dog) at the start of the game. Those that survive each map will follow the player into the next.
* These changes have been made when pressing the <kbd><b>TAB</b></kbd> key to autocomplete text in the console:
* The case of the autocompleted text now always matches the original text.
Expand Down
5 changes: 4 additions & 1 deletion src/d_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2339,6 +2339,9 @@ static void D_DoomMainSetup(void)
autoloading |= W_AutoloadFile("SIGIL_v1_1.wad", autoloadiwadsubfolder, false);
autoloading |= W_AutoloadFile("SIGIL_v1_0.wad", autoloadiwadsubfolder, false);
autoloading |= W_AutoloadFile("SIGIL.wad", autoloadiwadsubfolder, false);

if (autoloading)
autoloading |= W_AutoloadFile("SIGIL2.wad", autoloadiwadsubfolder, false);
}

autoloading |= W_AutoloadFiles(autoloadfolder, nosigil);
Expand Down Expand Up @@ -2410,7 +2413,7 @@ static void D_DoomMainSetup(void)
C_Output("Any " BOLD(".wad") ", " BOLD(".deh") " or " BOLD(".cfg") " files in "
BOLD("%s") ", " BOLD("%s") " or " BOLD("%s") " will be automatically loaded.",
autoloadfolder, autoloadiwadsubfolder, autoloadpwadsubfolder);
else if (!M_CheckParm("-noautoload") && gamemode != shareware)
else
C_Output("Any " BOLD(".wad") ", " BOLD(".deh") " or " BOLD(".cfg") " files in "
BOLD("%s") " or " BOLD("%s") " will be automatically loaded.",
autoloadfolder, autoloadiwadsubfolder);
Expand Down

0 comments on commit ea53a03

Please sign in to comment.