X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fevents.c;h=ea5312aecb1efbe79e8239e20ab69115c36a74e4;hb=0ac301d6e3c5551a5ff66baaaa8ce867bb1aceb1;hp=c40075e4d375faa0157249fbd68e9d909ba26b41;hpb=84b00c096ac7311cd019cc84969ff2d88353b3fa;p=rocksndiamonds.git diff --git a/src/events.c b/src/events.c index c40075e4..ea5312ae 100644 --- a/src/events.c +++ b/src/events.c @@ -401,6 +401,7 @@ void SetPlayerMouseAction(int mx, int my, int button) { int lx = getLevelFromScreenX(mx); int ly = getLevelFromScreenY(my); + int new_button = (!local_player->mouse_action.button && button); ClearPlayerMouseAction(); @@ -413,10 +414,12 @@ void SetPlayerMouseAction(int mx, int my, int button) if (tape.recording && tape.pausing && tape.use_mouse) { - /* prevent button release or motion events from un-pausing a paused game */ - if (button && !motion_status) - TapeTogglePause(TAPE_TOGGLE_MANUAL); + /* un-pause a paused game only if mouse button was newly pressed down */ + if (new_button) + TapeTogglePause(TAPE_TOGGLE_AUTOMATIC); } + + SetTileCursorXY(lx, ly); } void SleepWhileUnmapped()