diff options
-rw-r--r-- | src/doom/d_main.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/doom/d_main.c b/src/doom/d_main.c index 4068f677..e0bd1d26 100644 --- a/src/doom/d_main.c +++ b/src/doom/d_main.c @@ -417,6 +417,15 @@ boolean D_GrabMouseCallback(void) // void D_DoomLoop (void) { + if (bfgedition && + (demorecording || (gameaction == ga_playdemo) || netgame)) + { + printf(" WARNING: You are playing using one of the Doom Classic\n" + " IWAD files shipped with the Doom 3: BFG Edition. These are\n" + " known to be incompatible with the regular IWAD files and\n" + " may cause demos and network games to get out of sync.\n"); + } + if (demorecording) G_BeginRecording (); |