fixed bug with incorrectly initializing snapping in single-step mode
authorHolger Schemel <info@artsoft.org>
Mon, 21 Jan 2019 20:38:18 +0000 (21:38 +0100)
committerHolger Schemel <info@artsoft.org>
Mon, 21 Jan 2019 20:52:51 +0000 (21:52 +0100)
commit899e06c2695b543b93364993f12b46caa33e6cd7
treef8e453a18eea842a74f23d01431ca18cf57c3cc1
parent4d5bada656d88feb1eef48b153d5047056e2067c
fixed bug with incorrectly initializing snapping in single-step mode

When in single-step mode, snapping a tile (by using either TAS snap
keys or by using snap+direction keys) is followed by immediately
returning to pause mode. While this is fine, it was also followed by
initializing snapping (just as if the keys for snapping have been
released, which is usually indeed the case when in single-step mode,
but may be followed by pressing keys for snapping again, so the game
engine gets pressed snap keys in two subsequent frames without any
frame with "no snapping" action in between). When replaying a tape
with such snap actions (as recorded while playing), there is only one
single snap action (lasting two frames) when replaying, while there
were two snap actions (both lasting one frame) when recording, which
may result in different behaviour when replaying a recorded game.
(This can easily be tested by snapping several falling gems while in
single-step mode.)

This bug was fixed by removing the incorrect initialization of
snapping when returning to pause mode in single-step mode.
src/game.c