Actually work with the supplied WAD file One file-to-patch per patchfile Remove strange 'post-patch' substitute X11_BASE phase Fix numerous coredumps Add a '-h' usage Handle the sndserver dying Make it work on little endian systems Add a '-volume X' flag, and skip all sound code if 0 Other cleanup in some of the more repellant code areas.
13 lines
493 B
Text
13 lines
493 B
Text
$NetBSD: patch-as,v 1.1 2000/02/03 16:01:15 abs Exp $
|
|
|
|
--- linuxdoom-1.10/r_draw.c.orig Mon Dec 22 20:58:20 1997
|
|
+++ linuxdoom-1.10/r_draw.c Thu Feb 3 01:34:01 2000
|
|
@@ -461,7 +461,7 @@
|
|
int i;
|
|
|
|
translationtables = Z_Malloc (256*3+255, PU_STATIC, 0);
|
|
- translationtables = (byte *)(( (int)translationtables + 255 )& ~255);
|
|
+ translationtables = (byte *)(( (long)translationtables + 255 )& ~255L);
|
|
|
|
// translate just the 16 green colors
|
|
for (i=0 ; i<256 ; i++)
|