summaryrefslogtreecommitdiff
path: root/src/strife/p_dialog.c
diff options
context:
space:
mode:
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
+}
+