summaryrefslogtreecommitdiff
path: root/apps/plugins/doom
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-03-16 21:56:08 +0000
committerJens Arnold <amiconn@rockbox.org>2007-03-16 21:56:08 +0000
commit4d6374c9236b93e0bd457f99944164fc493d1120 (patch)
treeff9630fcef66e63c61cc0a74e97f21220e668f75 /apps/plugins/doom
parent2c643b9f3e22ee07f7949a5471f726758dc40841 (diff)
downloadrockbox-4d6374c9236b93e0bd457f99944164fc493d1120.tar.gz
rockbox-4d6374c9236b93e0bd457f99944164fc493d1120.zip
Get rid of the 'center' parameter for splashes. There were only 2 of almost 500 splashes which were not centered.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12807 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/doom')
-rw-r--r--apps/plugins/doom/rockdoom.c4
-rw-r--r--apps/plugins/doom/v_video.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/doom/rockdoom.c b/apps/plugins/doom/rockdoom.c
index 305eeafd03..1081324974 100644
--- a/apps/plugins/doom/rockdoom.c
+++ b/apps/plugins/doom/rockdoom.c
@@ -610,7 +610,7 @@ int doom_menu()
610 610
611 if( (status=Dbuild_base(names)) == 0 ) // Build up the base wad files (select last added file) 611 if( (status=Dbuild_base(names)) == 0 ) // Build up the base wad files (select last added file)
612 { 612 {
613 rb->splash(HZ*2, true, "Missing Base WAD!"); 613 rb->splash(HZ*2, "Missing Base WAD!");
614 return -2; 614 return -2;
615 } 615 }
616 616
@@ -694,7 +694,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
694 printf ("M_LoadDefaults: Load system defaults.\n"); 694 printf ("M_LoadDefaults: Load system defaults.\n");
695 M_LoadDefaults (); // load before initing other systems 695 M_LoadDefaults (); // load before initing other systems
696 696
697 rb->splash(HZ*2, true, "Welcome to RockDoom"); 697 rb->splash(HZ*2, "Welcome to RockDoom");
698 698
699 myargv =0; 699 myargv =0;
700 myargc=0; 700 myargc=0;
diff --git a/apps/plugins/doom/v_video.c b/apps/plugins/doom/v_video.c
index 167316beae..a7e2baea16 100644
--- a/apps/plugins/doom/v_video.c
+++ b/apps/plugins/doom/v_video.c
@@ -431,7 +431,7 @@ void V_DrawMemPatch(int x, int y, int scrn, const patch_t *patch,
431 || y<0 431 || y<0
432 || y+SHORT(patch->height) > ((flags & VPT_STRETCH) ? 200 : SCREENHEIGHT)) 432 || y+SHORT(patch->height) > ((flags & VPT_STRETCH) ? 200 : SCREENHEIGHT))
433 { 433 {
434 rb->splash(HZ*2, true, "This wad does not follow standard doom graphics!"); 434 rb->splash(HZ*2, "This wad does not follow standard doom graphics!");
435 // killough 1/19/98: improved error message: 435 // killough 1/19/98: improved error message:
436 I_Error("V_DrawMemPatch: Patch (%d,%d)-(%d,%d) exceeds LFB Bad V_DrawMemPatch (flags=%u)", 436 I_Error("V_DrawMemPatch: Patch (%d,%d)-(%d,%d) exceeds LFB Bad V_DrawMemPatch (flags=%u)",
437 x, y, x+SHORT(patch->width), y+SHORT(patch->height), flags); 437 x, y, x+SHORT(patch->width), y+SHORT(patch->height), flags);