commit 46aeb0666854b09be06029db0f6ca45f25ceb190
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Fri Oct 3 17:49:11 2008 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Fri Oct 3 17:49:11 2008 +0000
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
---
src/hexen/r_draw.c | 14 --------------
1 file changed, 14 deletions(-)
diff --git a/src/hexen/r_draw.c b/src/hexen/r_draw.c
index 04d4009d..fb417995 100644
--- a/src/hexen/r_draw.c
+++ b/src/hexen/r_draw.c
@@ -61,9 +61,6 @@ byte *dc_source; // first pixel in a column (possibly virtual)
int dccount; // just for profiling
-#ifndef __WATCOMC__
-#ifndef __i386
-#ifndef __m68k
void R_DrawColumn(void)
{
int count;
@@ -92,9 +89,6 @@ void R_DrawColumn(void)
}
while (count--);
}
-#endif // __m68k
-#endif // __i386
-#endif
void R_DrawColumnLow(void)
{
@@ -126,7 +120,6 @@ void R_DrawColumnLow(void)
while (count--);
}
-#ifndef __WATCOMC__
void R_DrawTLColumn(void)
{
int count;
@@ -162,7 +155,6 @@ void R_DrawTLColumn(void)
}
while (count--);
}
-#endif
//============================================================================
//
@@ -367,9 +359,6 @@ byte *ds_source; // start of a 64*64 tile image
int dscount; // just for profiling
-#ifndef __WATCOMC__
-#ifndef __i386
-#ifndef __m68k
void R_DrawSpan(void)
{
fixed_t xfrac, yfrac;
@@ -397,9 +386,6 @@ void R_DrawSpan(void)
}
while (count--);
}
-#endif
-#endif
-#endif
void R_DrawSpanLow(void)
{