shithub: choc

Download patch

ref: b81ba59d6649794cfba735d1ffa0e9458a6ee486
parent: 628e1e152b0d683917e4c55c2f5300a2d252edfd
parent: 19ca52e95404dfbd9feba8ad4c5712caaf3edf7b
author: Simon Howard <fraggle+github@gmail.com>
date: Mon Jul 13 21:48:58 EDT 2015

Merge pull request #577 from jkbenaim/master

hexen: Fix int/pointer union

--- a/src/hexen/h2def.h
+++ b/src/hexen/h2def.h
@@ -169,7 +169,7 @@
 
 typedef union
 {
-    int i;
+    intptr_t i;
     struct mobj_s *m;
     struct player_s *p;
 } specialval_t;