blob: 5370b302c2ed9dbecee8b29be943ee504d5e1b10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$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++)
|