summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/d_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/d_main.c')
-rw-r--r--apps/plugins/doom/d_main.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/apps/plugins/doom/d_main.c b/apps/plugins/doom/d_main.c
index 0b4f80f18f..2c03752abe 100644
--- a/apps/plugins/doom/d_main.c
+++ b/apps/plugins/doom/d_main.c
@@ -629,35 +629,35 @@ void D_DoomMainSetup(void)
629 else if (M_CheckParm ("-deathmatch")) 629 else if (M_CheckParm ("-deathmatch"))
630 deathmatch = 1; 630 deathmatch = 1;
631 631
632 printf("Welcome to Rockdoom"); 632 printf("Welcome to Rockdoom\n");
633 633
634 switch ( gamemode ) 634 switch ( gamemode )
635 { 635 {
636 case retail: 636 case retail:
637 printf ("The Ultimate DOOM Startup v%d.%d",DVERSION/100,DVERSION%100); 637 printf ("The Ultimate DOOM Startup v%d.%d\n",DVERSION/100,DVERSION%100);
638 break; 638 break;
639 case shareware: 639 case shareware:
640 printf ("DOOM Shareware Startup v%d.%d",DVERSION/100,DVERSION%100); 640 printf ("DOOM Shareware Startup v%d.%d\n",DVERSION/100,DVERSION%100);
641 break; 641 break;
642 case registered: 642 case registered:
643 printf ("DOOM Registered Startup v%d.%d",DVERSION/100,DVERSION%100); 643 printf ("DOOM Registered Startup v%d.%d\n",DVERSION/100,DVERSION%100);
644 break; 644 break;
645 case commercial: 645 case commercial:
646 switch (gamemission) 646 switch (gamemission)
647 { 647 {
648 case pack_plut: 648 case pack_plut:
649 printf ("DOOM 2: Plutonia Experiment v%d.%d",DVERSION/100,DVERSION%100); 649 printf ("DOOM 2: Plutonia Experiment v%d.%d\n",DVERSION/100,DVERSION%100);
650 break; 650 break;
651 case pack_tnt: 651 case pack_tnt:
652 printf ("DOOM 2: TNT - Evilution v%d.%d",DVERSION/100,DVERSION%100); 652 printf ("DOOM 2: TNT - Evilution v%d.%d\n",DVERSION/100,DVERSION%100);
653 break; 653 break;
654 default: 654 default:
655 printf ("DOOM 2: Hell on Earth v%d.%d",DVERSION/100,DVERSION%100); 655 printf ("DOOM 2: Hell on Earth v%d.%d\n",DVERSION/100,DVERSION%100);
656 break; 656 break;
657 } 657 }
658 break; 658 break;
659 default: 659 default:
660 printf ("Public DOOM v%d.%d",DVERSION/100,DVERSION%100); 660 printf ("Public DOOM v%d.%d\n",DVERSION/100,DVERSION%100);
661 break; 661 break;
662 } 662 }
663 663
@@ -745,14 +745,14 @@ void D_DoomMainSetup(void)
745 int i; 745 int i;
746 746
747 if ( gamemode == shareware) 747 if ( gamemode == shareware)
748 I_Error("\nYou cannot -file with the shareware version. Register!"); 748 I_Error("\nYou cannot -file with the shareware version. Register!\n");
749 749
750 // Check for fake IWAD with right name, 750 // Check for fake IWAD with right name,
751 // but w/o all the lumps of the registered version. 751 // but w/o all the lumps of the registered version.
752 if (gamemode == registered) 752 if (gamemode == registered)
753 for (i = 0;i < 23; i++) 753 for (i = 0;i < 23; i++)
754 if (W_CheckNumForName(name[i])<0) 754 if (W_CheckNumForName(name[i])<0)
755 I_Error("\nThis is not the registered version."); 755 I_Error("This is not the registered version.\n");
756 } 756 }
757 757
758 // Iff additonal PWAD files are used, print modified banner 758 // Iff additonal PWAD files are used, print modified banner