Make pause camera only zoom out if singleplayer pause

This commit is contained in:
Agent X 2024-03-05 16:26:23 -05:00
parent 9870e18bf5
commit 5199104e2a
1 changed files with 1 additions and 1 deletions

View File

@ -1335,7 +1335,7 @@ s32 play_mode_paused(void) {
game_exit();
}*/
if (!gLevelValues.zoomOutCameraOnPause) {
if (!gLevelValues.zoomOutCameraOnPause || !network_check_singleplayer_pause()) {
gCameraMovementFlags &= ~CAM_MOVE_PAUSE_SCREEN;
}
return 0;