shithub: choc

Download patch

ref: 46aeb0666854b09be06029db0f6ca45f25ceb190
parent: 0e5fce0604820a74da41624a4cb8991ca2ea5a05
author: Simon Howard <[email protected]>
date: Fri Oct 3 13:49:11 EDT 2008

Remove #defines for hexen/r_draw.c; we are only using the C versions of
these functions now.

Subversion-branch: /branches/raven-branch
Subversion-revision: 1330

--- a/src/hexen/r_draw.c
+++ b/src/hexen/r_draw.c
@@ -61,9 +61,6 @@
 
 int dccount;                    // just for profiling
 
-#ifndef __WATCOMC__
-#ifndef __i386
-#ifndef __m68k
 void R_DrawColumn(void)
 {
     int count;
@@ -92,9 +89,6 @@
     }
     while (count--);
 }
-#endif // __m68k
-#endif // __i386
-#endif
 
 void R_DrawColumnLow(void)
 {
@@ -126,7 +120,6 @@
     while (count--);
 }
 
-#ifndef __WATCOMC__
 void R_DrawTLColumn(void)
 {
     int count;
@@ -162,7 +155,6 @@
     }
     while (count--);
 }
-#endif
 
 //============================================================================
 //
@@ -367,9 +359,6 @@
 
 int dscount;                    // just for profiling
 
-#ifndef __WATCOMC__
-#ifndef __i386
-#ifndef __m68k
 void R_DrawSpan(void)
 {
     fixed_t xfrac, yfrac;
@@ -397,9 +386,6 @@
     }
     while (count--);
 }
-#endif
-#endif
-#endif
 
 void R_DrawSpanLow(void)
 {