summaryrefslogtreecommitdiff
path: root/src/strife/p_dialog.c
diff options
context:
space:
mode:
authorJames Haley2010-09-08 05:27:33 +0000
committerJames Haley2010-09-08 05:27:33 +0000
commit57dee80794dd9343f7038991ead3d92a2c34241a (patch)
tree99f655c29449a3268bb709d60d9af10ddea67327 /src/strife/p_dialog.c
parent691f1b3acbe3e9f847b7ded5aac98425fea054f0 (diff)
downloadchocolate-doom-57dee80794dd9343f7038991ead3d92a2c34241a.tar.gz
chocolate-doom-57dee80794dd9343f7038991ead3d92a2c34241a.tar.bz2
chocolate-doom-57dee80794dd9343f7038991ead3d92a2c34241a.zip
Functional menupause/menupausetime, fix to wait when there's not a
background pic, and elimination of more dead code in the menu system Subversion-branch: /branches/strife-branch Subversion-revision: 2042
Diffstat (limited to 'src/strife/p_dialog.c')
-rw-r--r--src/strife/p_dialog.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/strife/p_dialog.c b/src/strife/p_dialog.c
index a7e71a8c..ce906857 100644
--- a/src/strife/p_dialog.c
+++ b/src/strife/p_dialog.c
@@ -728,7 +728,7 @@ static void P_DialogDrawer(void)
V_DrawPatchDirect(0, 0, patch);
}
- if(menupausetime <= gametic)
+ if(dialogbgpiclumpnum == -1 || menupausetime <= gametic)
{
if(menuindialog)
{
@@ -778,7 +778,7 @@ static void P_DialogDrawer(void)
// haleyjd 09/05/10: Handles making a choice in a dialog. Installed as the
// callback for all items in the dialogmenu structure.
//
-static void P_DialogDoChoice(int choice)
+void P_DialogDoChoice(int choice)
{
// STRIFE-TODO
}
@@ -941,4 +941,5 @@ void P_DialogStart(player_t *player)
}
sprintf(dialoglastmsgbuffer, "%d) %s", i + 1, byetext);
-} \ No newline at end of file
+}
+