From 94108af78bab9a7002d363b35421bf1f6ac69205 Mon Sep 17 00:00:00 2001 From: Alexey Dokuchaev Date: Sun, 8 Dec 2019 12:15:29 +0000 Subject: Belatedly update Doom Legacy to version 1.47.2 (r1412) and unbreak. The new features include MBF (Marine's Best Friend) compatibility, support for sprites with 16 rotation positions, the possibility of multiple clients and the server running on the same computer, plus many bug fixes. While here, move ${DMDIR} up in WAD search list (DEFWADS20 -> DEFWADS04), add ASM_BROKEN and missing `gl' to USE_GL, improve diagnostics and fix potential segmentation fault in the owner_wad_search_order() function. --- games/doomlegacy/files/patch-src_i__tcp.c | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 games/doomlegacy/files/patch-src_i__tcp.c (limited to 'games/doomlegacy/files/patch-src_i__tcp.c') diff --git a/games/doomlegacy/files/patch-src_i__tcp.c b/games/doomlegacy/files/patch-src_i__tcp.c deleted file mode 100644 index 4057de5862c7..000000000000 --- a/games/doomlegacy/files/patch-src_i__tcp.c +++ /dev/null @@ -1,15 +0,0 @@ ---- src/i_tcp.c.orig 2017-03-03 19:49:10 UTC -+++ src/i_tcp.c -@@ -411,8 +411,12 @@ byte IPX_hashaddr(mysockaddr_t *a) - // Not allowed to be 0. - // Big endian, want final addr byte. - #ifdef LINUX -+# ifdef FREEBSD -+ return ((byte)(a->ipx.sipx_addr.x_host.c_host[5])) | 0x80; -+# else - // Linux: IPX address hash - return ((byte)(a->ipx.sipx_node[5])) | 0x80; -+# endif - #else - // Windows, OS2, DJGPP: IPX address hash - return ((byte)(a->ipx.sa_nodenum[5])) | 0x80; -- cgit v1.2.3