Skip to content

Commit

Permalink
Merge branch 'master' of github.com:fabiangreffrath/woof
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiangreffrath committed Jul 24, 2024
2 parents fa62ed2 + bf31da0 commit cb53e63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/g_game.c
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ void G_BuildTiccmd(ticcmd_t* cmd)
}

// special buttons
if (sendpause)
if (sendpause && gameaction != ga_newgame)
{
sendpause = false;
cmd->buttons = BT_SPECIAL | (BTS_PAUSE & BT_SPECIALMASK);
Expand Down
2 changes: 1 addition & 1 deletion src/m_fixed.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

#define div64_32(a, b) _div64((a), (b), NULL)

#elif defined(__GNUC__) && defined(_M_X64)
#elif defined(__GNUC__) && defined(__x86_64__)

inline static int32_t div64_32(int64_t a, int32_t b)
{
Expand Down

0 comments on commit cb53e63

Please sign in to comment.