summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/doom/p_saveg.c2
-rw-r--r--apps/plugins/doom/p_spec.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/doom/p_saveg.c b/apps/plugins/doom/p_saveg.c
index bf1a2edc45..7d012c7f76 100644
--- a/apps/plugins/doom/p_saveg.c
+++ b/apps/plugins/doom/p_saveg.c
@@ -44,7 +44,7 @@ byte *save_p;
44 44
45// Pads save_p to a 4-byte boundary 45// Pads save_p to a 4-byte boundary
46// so that the load/save works on SGI&Gecko. 46// so that the load/save works on SGI&Gecko.
47#define PADSAVEP() do { save_p += (4 - ((int) save_p & 3)) & 3; } while (0) 47#define PADSAVEP() do { save_p += (4 - ((unsigned long) save_p & 3)) & 3; } while (0)
48// 48//
49// P_ArchivePlayers 49// P_ArchivePlayers
50// 50//
diff --git a/apps/plugins/doom/p_spec.c b/apps/plugins/doom/p_spec.c
index 2876b7f4e5..8e3c81b76e 100644
--- a/apps/plugins/doom/p_spec.c
+++ b/apps/plugins/doom/p_spec.c
@@ -955,11 +955,11 @@ int P_SectorActive(special_e t,sector_t *sec)
955 switch (t) // return whether thinker of same type is active 955 switch (t) // return whether thinker of same type is active
956 { 956 {
957 case floor_special: 957 case floor_special:
958 return (int)sec->floordata; 958 return (sec->floordata!=NULL);
959 case ceiling_special: 959 case ceiling_special:
960 return (int)sec->ceilingdata; 960 return (sec->ceilingdata!=NULL);
961 case lighting_special: 961 case lighting_special:
962 return (int)sec->lightingdata; 962 return (sec->lightingdata!=NULL);
963 } 963 }
964 return 1; // don't know which special, must be active, shouldn't be here 964 return 1; // don't know which special, must be active, shouldn't be here
965} 965}