Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Oct 5, 2024
1 parent 1525cbd commit 5d2dbb1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
* The fuzz effect from spectres and the partial invisibility power-up now:
* Doesn't cause the status bar to bleed into the player's view when the console is open.
* Freezes along with everything else when freeze mode is enabled.
* Pressing the <kbd><b>PRINTSCREEN</b></kbd> key no longer accelerates the finale.

![](https://github.com/bradharding/www.doomretro.com/raw/master/wiki/bigdivider.png)

Expand Down
3 changes: 1 addition & 2 deletions src/d_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,6 @@ static void D_AutoloadSIGIL2WAD(void)
if (W_MergeFile(path, true))
sigil = true;
}

}

static void D_AutoloadNerveWAD(void)
Expand All @@ -1134,7 +1133,7 @@ static void D_AutoloadNerveWAD(void)

D_AutoloadExtrasWAD();

if (BTSX || M_CheckParm("-noautoload"))
if (M_CheckParm("-noautoload"))
return;

M_snprintf(path, sizeof(path), "%s" DIR_SEPARATOR_S "%s", wadfolder, "NERVE.WAD");
Expand Down
1 change: 0 additions & 1 deletion src/i_video.c
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,6 @@ static void I_SetPriority(bool active)

SDL_SetThreadPriority(SDL_THREAD_PRIORITY_NORMAL);
}

}

bool altdown = false;
Expand Down

0 comments on commit 5d2dbb1

Please sign in to comment.