diff --git a/src/g_demo.c b/src/g_demo.c index 8c6064c57949afe2215192351c6f2c11a3c047bd..438d3dfc91befb10a0522fa079363e952eab1df2 100644 --- a/src/g_demo.c +++ b/src/g_demo.c @@ -1444,7 +1444,7 @@ void G_BeginRecording(void) // file list m = demo_p;/* file count */ - demo_p += 1; + demo_p += 2; totalfiles = 0; for (i = mainwads; ++i < numwadfiles; ) diff --git a/src/m_menu.c b/src/m_menu.c index 828fc1aee8333a6d29605f792a1862781e69223b..21ba98dd2c16b983eb7cd3c1248f480314e93b9e 100644 --- a/src/m_menu.c +++ b/src/m_menu.c @@ -10545,23 +10545,35 @@ static void M_ReplayTimeAttack(INT32 choice) break; case DFILE_ERROR_OUTOFORDER: + /* demofileoverride = DFILE_OVERRIDE_SKIP; M_StartMessage(M_GetText("Add-ons for this replay\nwere loaded out of order.\n\nAttempt to playback anyway?\n\n(Press 'Y' to confirm)\n"), M_StartTimeAttackReplay, MM_YESNO); + */ + M_StartMessage(M_GetText("Add-ons for this replay\nwere loaded out of order.\n\n(Press a key)\n"), NULL, MM_NOTHING); break; case DFILE_ERROR_INCOMPLETEOUTOFORDER: + /* demofileoverride = DFILE_OVERRIDE_LOAD; M_StartMessage(M_GetText("Add-ons for this replay\nhave not been loaded,\nand some are in the wrong order.\n\nAttempt to load files?\n\n(Press 'Y' to confirm)\n"), M_StartTimeAttackReplay, MM_YESNO); + */ + M_StartMessage(M_GetText("Add-ons for this replay\nhave not been loaded,\nand some are in the wrong order.\n\n(Press a key)\n"), NULL, MM_NOTHING); break; case DFILE_ERROR_CANNOTLOAD: + /* demofileoverride = DFILE_OVERRIDE_SKIP; M_StartMessage(M_GetText("Add-ons for this replay\ncould not be loaded.\n\nAttempt to playback anyway?\n\n(Press 'Y' to confirm)\n"), M_StartTimeAttackReplay, MM_YESNO); + */ + M_StartMessage(M_GetText("Add-ons for this replay\ncould not be loaded.\n\n(Press a key)\n"), NULL, MM_NOTHING); break; case DFILE_ERROR_EXTRAFILES: + /* demofileoverride = DFILE_OVERRIDE_SKIP; M_StartMessage(M_GetText("You have more files loaded\nthan the replay does.\n\nAttempt to playback anyway?\n\n(Press 'Y' to confirm)\n"), M_StartTimeAttackReplay, MM_YESNO); + */ + M_StartMessage(M_GetText("You have more files loaded\nthan the replay does.\n\n(Press a key)\n"), NULL, MM_NOTHING); break; }