freebsd-ports/games/cleanq3/files/patch-code-game-q_shared.h
Alexey Dokuchaev 65c74465e7 Add CleanQ3, yet another cleaned up copy of the original Quake III Arena
source code.

CleanQ3 is a Quake III Arena engine project intended to clean up the
original source code, and eliminate bugs.  You won't find revolutionary
features, just a "better" Quake III.

WWW: http://tremor.quakedev.com/cleanq3.html
2006-03-20 15:21:27 +00:00

16 lines
547 B
C

--- code/game/q_shared.h.orig Tue Aug 16 02:10:07 2005
+++ code/game/q_shared.h Tue Aug 23 14:16:34 2005
@@ -452,13 +452,9 @@
void *Hunk_Alloc( int size, ha_pref preference );
#endif
-#ifdef __linux__
// https://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=371
// custom Snd_Memset implementation for glibc memset bug workaround
void Snd_Memset (void* dest, const int val, const size_t count);
-#else
-#define Snd_Memset Com_Memset
-#endif
#if !( defined __VECTORC )
void Com_Memset (void* dest, const int val, const size_t count);