Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Feb 24, 2025
1 parent a02bc9f commit 45ee079
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Blood splats no longer spawn when lost souls are killed using the `kill` CCMD.
* The [*MBF21*](https://doomwiki.org/wiki/MBF21)-compatible `RadiusDamage` codepointer now always inflicts damage as intended.
* The `IDMUS` cheat can now be used in the console when not playing a game.
* Cheats now become redacted in the console before pressing the <kbd><b>ENTER</b></kbd> key.
* Cheats now become redacted when entered in the console before pressing the <kbd><b>ENTER</b></kbd> key.
* A crash no longer occurs when using the `mapstats` CCMD in the console in some rare instances.
* A bug is fixed whereby the console would open when using the mouse pointer to adjust sliders in the options menu.

Expand Down
4 changes: 2 additions & 2 deletions src/am_map.c
Original file line number Diff line number Diff line change
Expand Up @@ -1068,7 +1068,7 @@ bool AM_Responder(const event_t *ev)
}

// mark spot
else if ((controllerbuttons & controllermark))
else if (controllerbuttons & controllermark)
{
AM_AddMark();
controllerwait = I_GetTime() + 12;
Expand Down Expand Up @@ -1175,7 +1175,7 @@ static void AM_RotatePoint(mpoint_t *point)

static void AM_CorrectAspectRatio(mpoint_t *point)
{
point->y = am_frame.center.y + 5 * (point->y - am_frame.center.y) / 6;
point->y = am_frame.center.y + (point->y - am_frame.center.y) * 5 / 6;
}

//
Expand Down

0 comments on commit 45ee079

Please sign in to comment.