Skip to content

Commit

Permalink
port: net: disable headroll in netgames
Browse files Browse the repository at this point in the history
  • Loading branch information
fgsfdsfgs committed Jan 1, 2024
1 parent 39474e9 commit ca0e3c3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/game/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,13 @@ u8 optionsGetCutsceneSubtitles(void)

s32 optionsGetHeadRoll(s32 mpchrnum)
{
#ifndef PLATFORM_N64
if (g_NetMode) {
// remove headroll from netplay for now for better shot consistency
// TODO: make it an option or something
return false;
}
#endif
return (g_PlayerConfigsArray[mpchrnum].options & OPTION_HEADROLL) != 0;
}

Expand Down

0 comments on commit ca0e3c3

Please sign in to comment.