summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Howard2008-10-03 17:49:11 +0000
committerSimon Howard2008-10-03 17:49:11 +0000
commit46aeb0666854b09be06029db0f6ca45f25ceb190 (patch)
treef402cc7a62e3d99951695668c7b1d3756586ecf2
parent0e5fce0604820a74da41624a4cb8991ca2ea5a05 (diff)
downloadchocolate-doom-46aeb0666854b09be06029db0f6ca45f25ceb190.tar.gz
chocolate-doom-46aeb0666854b09be06029db0f6ca45f25ceb190.tar.bz2
chocolate-doom-46aeb0666854b09be06029db0f6ca45f25ceb190.zip
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
-rw-r--r--src/hexen/r_draw.c14
1 files changed, 0 insertions, 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)
{