commit 8eba353126080a0fd16586b8a23aab6fe384afa4
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Fri Sep 26 22:46:05 2008 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Fri Sep 26 22:46:05 2008 +0000
Fix compile error.
Subversion-branch: /branches/raven-branch
Subversion-revision: 1290
---
src/heretic/p_setup.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/heretic/p_setup.c b/src/heretic/p_setup.c
index 11e3ad95..d27250c4 100644
--- a/src/heretic/p_setup.c
+++ b/src/heretic/p_setup.c
@@ -484,7 +484,7 @@ void P_GroupLines(void)
}
// build line tables for each sector
- linebuffer = Z_Malloc(total * sizeof(linebuffer_t *), PU_LEVEL, 0);
+ linebuffer = Z_Malloc(total * sizeof(line_t *), PU_LEVEL, 0);
sector = sectors;
for (i = 0; i < numsectors; i++, sector++)
{