From 51db2d3f2cfddfb1c94de1085d130c817bcd953f Mon Sep 17 00:00:00 2001 From: Karl Kurbjun Date: Sun, 2 Apr 2006 01:52:44 +0000 Subject: Update adds prboom's high resolution support, also makes the scaling for platforms w/ resolution less then 320x200 much nicer. IDoom's lookup table code has been removed. Also fixed a pallete bug. Some graphic errors are present in menu and status bar. Also updates some headers and output formatting. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9418 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/doom/d_main.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'apps/plugins/doom/d_main.c') 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) else if (M_CheckParm ("-deathmatch")) deathmatch = 1; - printf("Welcome to Rockdoom"); + printf("Welcome to Rockdoom\n"); switch ( gamemode ) { case retail: - printf ("The Ultimate DOOM Startup v%d.%d",DVERSION/100,DVERSION%100); + printf ("The Ultimate DOOM Startup v%d.%d\n",DVERSION/100,DVERSION%100); break; case shareware: - printf ("DOOM Shareware Startup v%d.%d",DVERSION/100,DVERSION%100); + printf ("DOOM Shareware Startup v%d.%d\n",DVERSION/100,DVERSION%100); break; case registered: - printf ("DOOM Registered Startup v%d.%d",DVERSION/100,DVERSION%100); + printf ("DOOM Registered Startup v%d.%d\n",DVERSION/100,DVERSION%100); break; case commercial: switch (gamemission) { case pack_plut: - printf ("DOOM 2: Plutonia Experiment v%d.%d",DVERSION/100,DVERSION%100); + printf ("DOOM 2: Plutonia Experiment v%d.%d\n",DVERSION/100,DVERSION%100); break; case pack_tnt: - printf ("DOOM 2: TNT - Evilution v%d.%d",DVERSION/100,DVERSION%100); + printf ("DOOM 2: TNT - Evilution v%d.%d\n",DVERSION/100,DVERSION%100); break; default: - printf ("DOOM 2: Hell on Earth v%d.%d",DVERSION/100,DVERSION%100); + printf ("DOOM 2: Hell on Earth v%d.%d\n",DVERSION/100,DVERSION%100); break; } break; default: - printf ("Public DOOM v%d.%d",DVERSION/100,DVERSION%100); + printf ("Public DOOM v%d.%d\n",DVERSION/100,DVERSION%100); break; } @@ -745,14 +745,14 @@ void D_DoomMainSetup(void) int i; if ( gamemode == shareware) - I_Error("\nYou cannot -file with the shareware version. Register!"); + I_Error("\nYou cannot -file with the shareware version. Register!\n"); // Check for fake IWAD with right name, // but w/o all the lumps of the registered version. if (gamemode == registered) for (i = 0;i < 23; i++) if (W_CheckNumForName(name[i])<0) - I_Error("\nThis is not the registered version."); + I_Error("This is not the registered version.\n"); } // Iff additonal PWAD files are used, print modified banner -- cgit v1.2.3