compatible with original Quake2 v3.20 network architecture, as well as with modern R1Q2 network architecture. Q2PRO is designed to be secure, fast and doesn't provide any graphical enhancements that are contrary to the classic Quake2 look and feel. It provides some features yet unique to Quake2, notably server side Multi View Demos. Q2PRO has it's own software and OpenGL refresh libraries and runs under Win32 and GNU/Linux natively. Q2PRO supports the following network protocols: - 34, original Quake2 protocol. - 35, enhanced R1Q2 protocol. - 36, enhanced Q2PRO protocol, extension of R1Q2 protocol. - 37, special broadband MVD protocol. WWW: http://q2pro.sourceforge.net/
20 lines
539 B
C
20 lines
539 B
C
--- ./source/snd_dma.c.orig Mon Dec 25 17:07:02 2006
|
|
+++ ./source/snd_dma.c Mon Dec 25 17:07:03 2006
|
|
@@ -110,7 +110,7 @@
|
|
#if (defined _WIN32)
|
|
void WAVE_FillAPI( snddmaAPI_t *api );
|
|
void DS_FillAPI( snddmaAPI_t *api );
|
|
-#elif (defined __linux__)
|
|
+#elif (defined __unix__)
|
|
void OSS_FillAPI( snddmaAPI_t *api );
|
|
#endif
|
|
|
|
@@ -129,7 +129,7 @@
|
|
/* fallback driver should be present on all systems */
|
|
#if (defined _WIN32)
|
|
{ "wave", WAVE_FillAPI },
|
|
-#elif (defined __linux__)
|
|
+#elif (defined __unix__)
|
|
{ "oss", OSS_FillAPI },
|
|
#endif
|
|
|