Remove vestiges of quest text data file

This commit is contained in:
Pasi Kallinen
2019-11-25 16:30:54 +02:00
parent b66bcc2f5a
commit ddd8b7d9a5
6 changed files with 4 additions and 475 deletions

View File

@@ -576,8 +576,6 @@ const struct instance_globals g_init = {
/* questpgr.c */
UNDEFINED_VALUES, /* cvt_buf */
UNDEFINED_VALUES, /* qt_list */
UNDEFINED_PTR, /* msg_file */
UNDEFINED_VALUES, /* nambuf */
/* read.c */

View File

@@ -26,9 +26,6 @@ static void FDECL(convert_line, (char *,char *));
static void FDECL(deliver_by_pline, (const char *));
static void FDECL(deliver_by_window, (const char *, int));
static boolean FDECL(skip_pager, (BOOLEAN_P));
#if 0
static struct qtmsg *FDECL(msg_in, (struct qtmsg *, int));
#endif
short
quest_info(typ)
@@ -190,22 +187,6 @@ char who, /* 'd' => deity, 'l' => leader, 'n' => nemesis, 'o' => artifact */
return;
}
#if 0
static struct qtmsg *
msg_in(qtm_list, msgnum)
struct qtmsg *qtm_list;
int msgnum;
{
struct qtmsg *qt_msg;
for (qt_msg = qtm_list; qt_msg->msgnum > 0; qt_msg++)
if (qt_msg->msgnum == msgnum)
return qt_msg;
return (struct qtmsg *) 0;
}
#endif
static void
convert_arg(c)
char c;