Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Oct 9, 2024
1 parent 49dc0a5 commit e00aa6d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +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.
* Pressing the <kbd><b>PRINTSCREEN</b></kbd> key no longer advances the finale.

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

Expand Down
2 changes: 1 addition & 1 deletion src/d_deh.c
Original file line number Diff line number Diff line change
Expand Up @@ -3191,7 +3191,7 @@ static void deh_procSounds(DEHFILE *fpin, const char *line)

if (!deh_GetData(inbuffer, key, &value, NULL)) // returns true if ok
{
C_Warning(1, "Bad data pair in \"%s\"\n", inbuffer);
C_Warning(1, "Bad data pair in \"%s\".", inbuffer);
continue;
}

Expand Down
8 changes: 3 additions & 5 deletions src/v_video.c
Original file line number Diff line number Diff line change
Expand Up @@ -933,14 +933,12 @@ void V_DrawMenuPatch(int x, int y, patch_t *patch, bool highlight, int shadowwid

void V_DrawHelpPatch(patch_t *patch)
{
byte *desttop;
byte *desttop = &screens[0][((WIDESCREENDELTA * DX) >> FRACBITS)];
const int width = SHORT(patch->width) << FRACBITS;

desttop = &screens[0][((WIDESCREENDELTA * DX) >> FRACBITS)];

for (int col = 0, i = 0; col < width; col += DXI, i++, desttop++)
for (int col = 0; col < width; col += DXI, desttop++)
{
column_t *column = (column_t *)((byte *)patch + LONG(patch->columnoffset[col >> FRACBITS]));
column_t *column = (column_t *)((byte *)patch + LONG(patch->columnoffset[col >> FRACBITS]));

// step through the posts in a column
while (column->topdelta != 0xFF)
Expand Down

0 comments on commit e00aa6d

Please sign in to comment.