ref: e7f0d2727a01c90a5552a3baf442c11f43a95ce8
parent: 4070ecd92c45dadc80e048e1bc929bced925c232
author: Simon Howard <[email protected]>
date: Sat Apr 24 19:53:03 EDT 2010
Add -reject_pad_with_ff parameter to allow padding value to be specified. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1915
--- a/src/p_setup.c
+++ b/src/p_setup.c
@@ -33,6 +33,7 @@
#include "deh_main.h"
#include "i_swap.h"
+#include "m_argv.h"
#include "m_bbox.h"
#include "g_game.h"
@@ -651,6 +652,7 @@
unsigned int i;
unsigned int byte_num;
byte *dest;
+ unsigned int padvalue;
// Values to pad the REJECT array with:
@@ -681,9 +683,18 @@
fprintf(stderr, "PadRejectArray: REJECT lump too short to pad! (%i > %i)\n",
len, sizeof(rejectpad));
- // Pad remaining space with 0xff.
+ // Pad remaining space with 0 (or 0xff, if specified on command line).
- memset(array + sizeof(rejectpad), 0x00, len - sizeof(rejectpad));
+ if (M_CheckParm("-reject_pad_with_ff"))
+ {
+ padvalue = 0xff;
+ }
+ else
+ {
+ padvalue = 0xf00;
+ }
+
+ memset(array + sizeof(rejectpad), padvalue, len - sizeof(rejectpad));
}
}