diff --git a/source/blood/src/blood.cpp b/source/blood/src/blood.cpp index fe6ba1829..57e18d145 100644 --- a/source/blood/src/blood.cpp +++ b/source/blood/src/blood.cpp @@ -1187,16 +1187,20 @@ RESTART: goto RESTART; } UpdateNetworkMenus(); +#if 0 if (!gDemo.at0 && gDemo.at59ef > 0 && gGameOptions.nGameType == 0 && !bNoDemo && demo_playloop) gDemo.SetupPlayback(NULL); +#endif gQuitGame = 0; gRestartGame = 0; if (gGameOptions.nGameType > 0) { inputState.ClearAllInput(); } +#if 0 else if (gDemo.at1 && !bAddUserMap && !bNoDemo && demo_playloop) gDemo.Playback(); +#endif if (gDemo.at59ef > 0) M_ClearMenus(); if (!bAddUserMap && !gGameStarted) @@ -1344,8 +1348,10 @@ RESTART: #endif if (gGameOptions.nGameType != 0) { +#if 0 if (!gDemo.at0 && gDemo.at59ef > 0 && gGameOptions.nGameType == 0 && !bNoDemo && demo_playloop) gDemo.NextDemo(); +#endif videoSetViewableArea(0,0,xdim-1,ydim-1); if (!bQuickStart) credLogosDos(); diff --git a/source/core/gamecvars.cpp b/source/core/gamecvars.cpp index 9559e0a0e..48e44a329 100644 --- a/source/core/gamecvars.cpp +++ b/source/core/gamecvars.cpp @@ -118,7 +118,6 @@ CUSTOM_CVARD(Int, cl_autovote, 0, CVAR_ARCHIVE, "enable/disable automatic voting // Demos -CVAR(Bool, demo_playloop, true, CVAR_ARCHIVE) // only active in Blood, because none of the other games can play demos right now. CVARD_NAMED(Bool, demorec_seeds, demorec_seeds_cvar, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG, "enable/disable recording of random seed for later sync checking") CVARD_NAMED(Bool, demorec_diffs, demorec_diffs_cvar, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG, "enable/disable diff recording in demos") CVARD_NAMED(Bool, demorec_force, demorec_force_cvar, false, CVAR_ARCHIVE|CVAR_GLOBALCONFIG, "enable/disable forced demo recording")