This fixes a problem with automatically pausing tape at the end of a
tape without "auto-record after replay" being activated, which leads
to a pause mode that cannot be left besides pressing "stop tape".
This change reverts commit
31df2f98.
if (tape.counter >= tape.length) // end of tape reached
{
- if (!tape.auto_play)
+ if (tape.warp_forward && !tape.auto_play)
{
TapeStopWarpForward();
TapeTogglePause(TAPE_TOGGLE_MANUAL);