From 2e87490f3b01d34cb937ce5becc48e55da3a5d40 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 29 Jan 2004 08:11:04 +0000 Subject: [PATCH] pr_stringsize hasn't reflected static strings size for a while... --- tools/qfcc/source/strings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/strings.c b/tools/qfcc/source/strings.c index 9f567839c..12b8ea246 100644 --- a/tools/qfcc/source/strings.c +++ b/tools/qfcc/source/strings.c @@ -49,11 +49,11 @@ dump_strings (progs_t *pr) char *s = pr->pr_strings; printf ("%d ", 0); - while (i++ < pr->pr_stringsize) { + while (i++ < pr->progs->numstrings) { switch (*s) { case 0: fputs ("\n", stdout); - if (i < pr->pr_stringsize) + if (i < pr->progs->numstrings) printf ("%d ", i); break; case 9: