summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/p_saveg.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/p_saveg.c')
-rw-r--r--apps/plugins/doom/p_saveg.c2
1 files changed, 1 insertions, 1 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//