X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Ftape.c;h=71addab34829a8c1eab0a7152e98c384df1a35e7;hp=f8e6a5e0594214d8f29f372d70023398113b04e2;hb=714fef0f666caf3561dfa0f7de5522f89e943e73;hpb=d08e78f8f8fbad82d417ef27351676753c2c9fa3 diff --git a/src/tape.c b/src/tape.c index f8e6a5e0..71addab3 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1066,7 +1066,10 @@ void TapeQuickLoad() void InsertSolutionTape() { - if (!fileExists(getSolutionTapeFilename(level_nr))) + boolean level_has_tape = (level.game_engine_type == GAME_ENGINE_TYPE_SP && + level.native_sp_level->demo.is_available); + + if (!fileExists(getSolutionTapeFilename(level_nr)) && !level_has_tape) { Request("No solution tape for this level!", REQ_CONFIRM);