commit 59c0709931a65872b9cbcff8ea4cd705708bb51f
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Thu Oct 18 23:55:11 2007 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Thu Oct 18 23:55:11 2007 +0000
Reorder actionf_t union members to fix warnings in info.c.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 979
---
src/d_think.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/d_think.h b/src/d_think.h
index d03bed7a..1405230d 100644
--- a/src/d_think.h
+++ b/src/d_think.h
@@ -46,8 +46,8 @@ typedef void (*actionf_p2)( void*, void* );
typedef union
{
- actionf_p1 acp1;
actionf_v acv;
+ actionf_p1 acp1;
actionf_p2 acp2;
} actionf_t;