summaryrefslogtreecommitdiff
path: root/src/heretic
diff options
context:
space:
mode:
authorSimon Howard2008-09-20 22:20:27 +0000
committerSimon Howard2008-09-20 22:20:27 +0000
commit7c747c3d576521f2e1773fd285c0d2c7cb32aca8 (patch)
tree4380c4375748a7dddaae16f30d8142468521deba /src/heretic
parent2e0b647dbdf0ab21342c751c63eb4503f9d47dca (diff)
downloadchocolate-doom-7c747c3d576521f2e1773fd285c0d2c7cb32aca8.tar.gz
chocolate-doom-7c747c3d576521f2e1773fd285c0d2c7cb32aca8.tar.bz2
chocolate-doom-7c747c3d576521f2e1773fd285c0d2c7cb32aca8.zip
Remove ifdef blocks from heretic/r_draw.c.
Subversion-branch: /branches/raven-branch Subversion-revision: 1258
Diffstat (limited to 'src/heretic')
-rw-r--r--src/heretic/r_draw.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/heretic/r_draw.c b/src/heretic/r_draw.c
index a745c4f0..4315c600 100644
--- a/src/heretic/r_draw.c
+++ b/src/heretic/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)
{
@@ -320,9 +314,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;
@@ -350,9 +341,6 @@ void R_DrawSpan(void)
}
while (count--);
}
-#endif
-#endif
-#endif
void R_DrawSpanLow(void)
{