summaryrefslogtreecommitdiff
path: root/src/strife/f_finale.c
diff options
context:
space:
mode:
authorJames Haley2010-09-18 18:36:36 +0000
committerJames Haley2010-09-18 18:36:36 +0000
commit8ba444e5efd62f011218a2121084576ee1bf84fb (patch)
tree55b99216efa96affba8f790f8cb0fbe0b2d8def1 /src/strife/f_finale.c
parent5de507694b0ca43739033d75cf20fcf7ea31a2dd (diff)
downloadchocolate-doom-8ba444e5efd62f011218a2121084576ee1bf84fb.tar.gz
chocolate-doom-8ba444e5efd62f011218a2121084576ee1bf84fb.tar.bz2
chocolate-doom-8ba444e5efd62f011218a2121084576ee1bf84fb.zip
More use of DEH_String and DEH_snprintf, especially in the dialog
engine. Also more use of new GiveVoiceObjective macro. Subversion-branch: /branches/strife-branch Subversion-revision: 2111
Diffstat (limited to 'src/strife/f_finale.c')
-rw-r--r--src/strife/f_finale.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strife/f_finale.c b/src/strife/f_finale.c
index f12db08c..b93d1106 100644
--- a/src/strife/f_finale.c
+++ b/src/strife/f_finale.c
@@ -305,13 +305,13 @@ static void F_DoSlideShow(void)
case SLIDE_SIGIL1: // state #5
slideshow_panel = DEH_String("SS3F1");
- I_StartVoice("MAC16");
+ I_StartVoice(DEH_String("MAC16"));
slideshow_state = SLIDE_SIGIL2;
slideshow_tics = 350;
break;
case SLIDE_SIGIL2: // state #6
slideshow_panel = DEH_String("SS3F2");
- I_StartVoice("MAC17");
+ I_StartVoice(DEH_String("MAC17"));
slideshow_state = SLIDE_SIGIL3;
slideshow_tics = 420;
break;